Archived
1
0

fix: installer tests (#5578)

Also rename from yml to yaml.
This commit is contained in:
Asher 2022-09-22 19:15:26 -05:00 committed by GitHub
parent 42c21c9684
commit 7e98628167
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,11 +6,13 @@ on:
- main - main
paths: paths:
- "install.sh" - "install.sh"
- ".github/workflows/installer.yaml"
pull_request: pull_request:
branches: branches:
- main - main
paths: paths:
- "install.sh" - "install.sh"
- ".github/workflows/installer.yaml"
# Cancel in-progress runs for pull requests when developers push # Cancel in-progress runs for pull requests when developers push
# additional changes, and serialize builds in branches. # additional changes, and serialize builds in branches.
@ -33,8 +35,8 @@ jobs:
- name: Install code-server - name: Install code-server
run: ./install.sh run: ./install.sh
- name: Test code-server - name: Test code-server was installed globally
run: CODE_SERVER_PATH="code-server" yarn test:integration run: code-server --help
alpine: alpine:
name: Test installer on Alpine name: Test installer on Alpine
@ -54,6 +56,11 @@ jobs:
- name: Test standalone to a non-existent prefix - name: Test standalone to a non-existent prefix
run: su coder -c "./install.sh --method standalone --prefix /tmp/does/not/yet/exist" run: su coder -c "./install.sh --method standalone --prefix /tmp/does/not/yet/exist"
# We do not actually have Alpine standalone builds so running code-server
# will not work.
- name: Test code-server was installed to prefix
run: test -f /tmp/does/not/yet/exist/bin/code-server
macos: macos:
name: Test installer on macOS name: Test installer on macOS
runs-on: macos-latest runs-on: macos-latest
@ -65,5 +72,5 @@ jobs:
- name: Install code-server - name: Install code-server
run: ./install.sh run: ./install.sh
- name: Test code-server - name: Test code-server was installed globally
run: CODE_SERVER_PATH="code-server" yarn test:integration run: code-server --help