2020-05-07 12:06:55 +08:00
|
|
|
name: ci
|
|
|
|
|
2021-03-13 01:48:39 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2020-05-07 12:06:55 +08:00
|
|
|
|
|
|
|
jobs:
|
2020-05-13 07:33:34 +08:00
|
|
|
fmt:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-03-13 01:48:39 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-13 07:33:34 +08:00
|
|
|
- name: Run ./ci/steps/fmt.sh
|
2020-09-15 22:41:47 +08:00
|
|
|
uses: ./ci/images/debian10
|
2020-05-13 07:33:34 +08:00
|
|
|
with:
|
|
|
|
args: ./ci/steps/fmt.sh
|
|
|
|
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-03-13 01:48:39 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-13 07:33:34 +08:00
|
|
|
- name: Run ./ci/steps/lint.sh
|
2020-09-15 22:41:47 +08:00
|
|
|
uses: ./ci/images/debian10
|
2020-05-13 07:33:34 +08:00
|
|
|
with:
|
|
|
|
args: ./ci/steps/lint.sh
|
|
|
|
|
2021-03-10 07:35:54 +08:00
|
|
|
test-unit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Run unit tests
|
|
|
|
uses: ./ci/images/debian10
|
|
|
|
with:
|
|
|
|
args: ./ci/steps/test-unit.sh
|
|
|
|
test-e2e:
|
2021-01-28 07:04:37 +08:00
|
|
|
needs: linux-amd64
|
2020-05-08 08:44:32 +08:00
|
|
|
runs-on: ubuntu-latest
|
2021-01-29 07:23:55 +08:00
|
|
|
env:
|
|
|
|
PASSWORD: e45432jklfdsab
|
|
|
|
CODE_SERVER_ADDRESS: http://localhost:8080
|
2020-05-07 12:06:55 +08:00
|
|
|
steps:
|
2021-03-13 01:48:39 +08:00
|
|
|
- uses: actions/checkout@v2
|
2021-01-28 07:04:37 +08:00
|
|
|
- name: Download release packages
|
|
|
|
uses: actions/download-artifact@v2
|
2020-05-08 08:44:32 +08:00
|
|
|
with:
|
2021-01-28 07:04:37 +08:00
|
|
|
name: release-packages
|
|
|
|
path: ./release-packages
|
|
|
|
- name: Untar code-server file
|
|
|
|
run: |
|
|
|
|
cd release-packages && tar -xzf code-server*-linux-amd64.tar.gz
|
|
|
|
- uses: microsoft/playwright-github-action@v1
|
2021-03-10 07:36:56 +08:00
|
|
|
- name: Install dependencies and run end-to-end tests
|
2021-01-28 07:04:37 +08:00
|
|
|
run: |
|
2021-03-17 03:18:33 +08:00
|
|
|
./release-packages/code-server*-linux-amd64/bin/code-server &
|
2021-01-28 07:04:37 +08:00
|
|
|
yarn --frozen-lockfile
|
2021-03-10 07:36:56 +08:00
|
|
|
yarn test:e2e
|
2021-02-03 05:29:02 +08:00
|
|
|
- name: Upload test artifacts
|
2021-03-06 01:28:37 +08:00
|
|
|
if: always()
|
2021-02-03 05:29:02 +08:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: test-videos
|
2021-03-10 07:36:56 +08:00
|
|
|
path: ./test/e2e/videos
|
2021-03-02 06:46:16 +08:00
|
|
|
- name: Remove release packages and test artifacts
|
2021-03-10 07:35:54 +08:00
|
|
|
run: rm -rf ./release-packages ./test/e2e/videos
|
2020-05-08 08:44:32 +08:00
|
|
|
|
2020-05-08 11:48:49 +08:00
|
|
|
release:
|
2020-05-08 08:44:32 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-03-13 01:48:39 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-08 08:44:32 +08:00
|
|
|
- name: Run ./ci/steps/release.sh
|
2020-09-15 22:41:47 +08:00
|
|
|
uses: ./ci/images/debian10
|
2020-05-08 08:44:32 +08:00
|
|
|
with:
|
|
|
|
args: ./ci/steps/release.sh
|
|
|
|
- name: Upload npm package artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: npm-package
|
2020-05-19 01:48:45 +08:00
|
|
|
path: ./release-npm-package
|
2020-05-08 08:44:32 +08:00
|
|
|
|
2020-05-08 11:48:49 +08:00
|
|
|
linux-amd64:
|
|
|
|
needs: release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-03-13 01:48:39 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-08 11:48:49 +08:00
|
|
|
- name: Download npm package
|
2020-05-08 12:34:20 +08:00
|
|
|
uses: actions/download-artifact@v2
|
2020-05-08 11:48:49 +08:00
|
|
|
with:
|
|
|
|
name: npm-package
|
2020-05-19 01:48:45 +08:00
|
|
|
path: ./release-npm-package
|
2020-05-28 06:04:36 +08:00
|
|
|
- name: Run ./ci/steps/release-packages.sh
|
2020-06-04 00:14:55 +08:00
|
|
|
uses: ./ci/images/centos7
|
2020-05-08 11:48:49 +08:00
|
|
|
with:
|
2020-05-28 06:04:36 +08:00
|
|
|
args: ./ci/steps/release-packages.sh
|
2020-05-08 11:48:49 +08:00
|
|
|
- name: Upload release artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-05-08 12:34:20 +08:00
|
|
|
name: release-packages
|
|
|
|
path: ./release-packages
|
2020-05-08 11:48:49 +08:00
|
|
|
|
2020-05-08 08:44:32 +08:00
|
|
|
linux-arm64:
|
2020-05-08 11:48:49 +08:00
|
|
|
needs: release
|
2020-05-08 08:44:32 +08:00
|
|
|
runs-on: ubuntu-arm64-latest
|
|
|
|
steps:
|
2021-03-13 01:48:39 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-08 11:48:49 +08:00
|
|
|
- name: Download npm package
|
2020-05-08 12:34:20 +08:00
|
|
|
uses: actions/download-artifact@v2
|
2020-05-08 11:48:49 +08:00
|
|
|
with:
|
|
|
|
name: npm-package
|
2020-05-19 01:48:45 +08:00
|
|
|
path: ./release-npm-package
|
2020-05-28 06:04:36 +08:00
|
|
|
- name: Run ./ci/steps/release-packages.sh
|
2020-06-04 00:14:55 +08:00
|
|
|
uses: ./ci/images/centos7
|
2020-05-08 08:44:32 +08:00
|
|
|
with:
|
2020-05-28 06:04:36 +08:00
|
|
|
args: ./ci/steps/release-packages.sh
|
2020-05-08 08:44:32 +08:00
|
|
|
- name: Upload release artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-05-08 12:34:20 +08:00
|
|
|
name: release-packages
|
|
|
|
path: ./release-packages
|
2021-03-02 06:50:07 +08:00
|
|
|
- name: Remove docker images
|
2021-03-02 07:57:02 +08:00
|
|
|
run: docker system prune -af
|
2020-05-08 08:44:32 +08:00
|
|
|
|
2020-05-08 13:42:46 +08:00
|
|
|
macos-amd64:
|
2020-05-08 11:48:49 +08:00
|
|
|
needs: release
|
2020-05-08 08:44:32 +08:00
|
|
|
runs-on: macos-latest
|
2021-03-13 01:48:39 +08:00
|
|
|
# This job requires secrets, so can only run on the default branch
|
|
|
|
if: github.ref == 'refs/heads/main'
|
2020-05-08 08:44:32 +08:00
|
|
|
steps:
|
2021-03-13 01:48:39 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-08 11:48:49 +08:00
|
|
|
- name: Download npm package
|
2020-05-08 12:34:20 +08:00
|
|
|
uses: actions/download-artifact@v2
|
2020-05-08 11:48:49 +08:00
|
|
|
with:
|
|
|
|
name: npm-package
|
2020-05-19 01:48:45 +08:00
|
|
|
path: ./release-npm-package
|
2020-05-28 06:04:36 +08:00
|
|
|
- run: ./ci/steps/release-packages.sh
|
2020-05-08 08:44:32 +08:00
|
|
|
env:
|
2020-05-08 11:48:49 +08:00
|
|
|
# Otherwise we get rate limited when fetching the ripgrep binary.
|
2020-05-09 04:31:42 +08:00
|
|
|
# For whatever reason only MacOS needs it.
|
2020-05-08 15:08:30 +08:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-05-08 08:44:32 +08:00
|
|
|
- name: Upload release artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
2020-05-07 12:06:55 +08:00
|
|
|
with:
|
2020-05-08 12:34:20 +08:00
|
|
|
name: release-packages
|
|
|
|
path: ./release-packages
|
2020-05-16 22:55:46 +08:00
|
|
|
|
|
|
|
docker-amd64:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: linux-amd64
|
|
|
|
steps:
|
2021-03-13 01:48:39 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-16 22:55:46 +08:00
|
|
|
- name: Download release package
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: release-packages
|
|
|
|
path: ./release-packages
|
|
|
|
- name: Run ./ci/steps/build-docker-image.sh
|
2020-09-15 22:41:47 +08:00
|
|
|
uses: ./ci/images/debian10
|
2020-05-16 22:55:46 +08:00
|
|
|
with:
|
|
|
|
args: ./ci/steps/build-docker-image.sh
|
|
|
|
- name: Upload release image
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: release-images
|
|
|
|
path: ./release-images
|
|
|
|
|
|
|
|
docker-arm64:
|
|
|
|
runs-on: ubuntu-arm64-latest
|
|
|
|
needs: linux-arm64
|
|
|
|
steps:
|
2021-03-13 01:48:39 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-16 22:55:46 +08:00
|
|
|
- name: Download release package
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: release-packages
|
|
|
|
path: ./release-packages
|
|
|
|
- name: Run ./ci/steps/build-docker-image.sh
|
2020-06-04 04:22:59 +08:00
|
|
|
uses: ./ci/images/centos7
|
2020-05-16 22:55:46 +08:00
|
|
|
with:
|
|
|
|
args: ./ci/steps/build-docker-image.sh
|
|
|
|
- name: Upload release image
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: release-images
|
|
|
|
path: ./release-images
|