2021-02-20 10:13:44 +01:00
|
|
|
name: "Windows Zip"
|
|
|
|
|
|
|
|
# any branch is useful for testing before a PR is submitted
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
# run on pushes to any branch
|
|
|
|
# run on PRs from external forks
|
|
|
|
if: |
|
|
|
|
(github.event_name != 'pull_request')
|
|
|
|
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
2021-02-24 04:13:00 +01:00
|
|
|
name: Build
|
|
|
|
runs-on: windows-latest
|
2021-02-20 10:13:44 +01:00
|
|
|
|
|
|
|
steps:
|
2021-02-24 04:13:00 +01:00
|
|
|
- uses: msys2/setup-msys2@v2
|
|
|
|
with:
|
|
|
|
path-type: inherit
|
|
|
|
install: >-
|
|
|
|
zip
|
|
|
|
|
2021-02-20 10:13:44 +01:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 12
|
|
|
|
|
|
|
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
2021-02-24 04:13:00 +01:00
|
|
|
shell: msys2 {0}
|
2021-02-20 10:13:44 +01:00
|
|
|
run: src/bin/installDeps.sh
|
|
|
|
|
|
|
|
- name: Run the backend tests
|
2021-02-24 04:13:00 +01:00
|
|
|
shell: msys2 {0}
|
2021-02-20 10:13:44 +01:00
|
|
|
run: cd src && npm test
|
|
|
|
|
|
|
|
- name: Build the .zip
|
2021-02-24 04:13:00 +01:00
|
|
|
shell: msys2 {0}
|
2021-02-20 10:13:44 +01:00
|
|
|
run: src/bin/buildForWindows.sh
|
|
|
|
|
|
|
|
- name: Archive production artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: etherpad-lite-win.zip
|
|
|
|
path: etherpad-lite-win.zip
|
|
|
|
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
# run on pushes to any branch
|
|
|
|
# run on PRs from external forks
|
|
|
|
if: |
|
|
|
|
(github.event_name != 'pull_request')
|
|
|
|
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
2021-02-24 04:13:00 +01:00
|
|
|
name: Deploy
|
2021-02-20 10:13:44 +01:00
|
|
|
needs: build
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Download zip
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: etherpad-lite-win.zip
|
|
|
|
|
|
|
|
- name: Extract Etherpad
|
|
|
|
run: 7z x etherpad-lite-win.zip -oetherpad
|
|
|
|
|
2021-03-01 15:31:55 +01:00
|
|
|
- name: Install Cypress
|
|
|
|
run: npm install cypress -g
|
2021-02-20 10:13:44 +01:00
|
|
|
|
|
|
|
- name: Run Etherpad
|
|
|
|
run: |
|
|
|
|
cd etherpad
|
|
|
|
node node_modules\ep_etherpad-lite\node\server.js &
|
|
|
|
curl --connect-timeout 10 --max-time 20 --retry 5 --retry-delay 10 --retry-max-time 60 --retry-connrefused http://127.0.0.1:9001/p/test
|
2021-03-01 15:31:55 +01:00
|
|
|
cd src\tests\frontend
|
|
|
|
cypress run --spec cypress\integration\test.js --config-file cypress\cypress.json
|