2020-09-20 17:35:03 -04:00
|
|
|
name: linux_build
|
2020-09-20 17:26:06 -04:00
|
|
|
|
|
|
|
on:
|
2021-03-28 17:07:35 -04:00
|
|
|
workflow_dispatch:
|
2020-09-20 18:28:07 -04:00
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *'
|
2020-09-20 17:26:06 -04:00
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linux:
|
|
|
|
runs-on: ubuntu-latest
|
2020-10-05 19:14:45 -04:00
|
|
|
container:
|
|
|
|
image: ${{ matrix.image }}
|
|
|
|
env:
|
|
|
|
OS_NAME: 'linux'
|
|
|
|
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
|
|
|
|
2020-09-20 17:26:06 -04:00
|
|
|
strategy:
|
2020-09-20 17:35:03 -04:00
|
|
|
fail-fast: false
|
2020-09-20 17:26:06 -04:00
|
|
|
matrix:
|
2020-10-05 13:21:49 -04:00
|
|
|
include:
|
|
|
|
- vscode_arch: x64
|
|
|
|
npm_arch: x64
|
2021-02-07 00:48:11 -05:00
|
|
|
image: vscodium/vscodium-linux-build-agent:bionic-x64
|
2020-10-05 13:21:49 -04:00
|
|
|
- vscode_arch: arm64
|
|
|
|
npm_arch: arm64
|
2021-02-07 00:48:11 -05:00
|
|
|
image: vscodium/vscodium-linux-build-agent:stretch-arm64
|
2020-10-08 22:45:03 -04:00
|
|
|
- vscode_arch: armhf
|
2020-10-05 13:21:49 -04:00
|
|
|
npm_arch: armv7l
|
2021-02-07 00:48:11 -05:00
|
|
|
image: vscodium/vscodium-linux-build-agent:stretch-armhf
|
2020-09-20 18:05:55 -04:00
|
|
|
|
2020-09-20 17:26:06 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup Node.js environment
|
2020-11-19 14:30:46 -05:00
|
|
|
uses: actions/setup-node@v1
|
2020-09-20 17:26:06 -04:00
|
|
|
with:
|
2021-07-10 10:09:37 -04:00
|
|
|
node-version: 14
|
2020-09-20 17:26:06 -04:00
|
|
|
|
2020-10-05 19:46:22 -04:00
|
|
|
- name: Install Yarn
|
|
|
|
run: npm install -g yarn
|
|
|
|
|
2021-03-10 10:48:45 -05:00
|
|
|
- name: Check PR or cron
|
2021-03-10 10:56:14 -05:00
|
|
|
run: ./check_cron_or_pr.sh
|
2021-03-10 10:48:45 -05:00
|
|
|
|
2020-09-20 17:26:06 -04:00
|
|
|
- name: Clone VSCode repo
|
2020-10-05 19:31:17 -04:00
|
|
|
run: ./get_repo.sh
|
2020-09-20 17:26:06 -04:00
|
|
|
|
|
|
|
- name: Check existing VSCodium tags/releases
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-10-05 19:31:17 -04:00
|
|
|
run: ./check_tags.sh
|
2021-03-10 10:48:45 -05:00
|
|
|
if: env.SHOULD_DEPLOY == 'yes'
|
2020-09-20 17:26:06 -04:00
|
|
|
|
2021-03-10 12:58:36 -05:00
|
|
|
- name: Compute cache key
|
|
|
|
id: yarnCacheKey
|
|
|
|
run: echo "::set-output name=value::$(node build/azure-pipelines/computeYarnCacheKey.js)"
|
2021-03-10 13:24:52 -05:00
|
|
|
if: env.SHOULD_BUILD == 'yes'
|
2021-03-10 12:58:36 -05:00
|
|
|
|
|
|
|
- name: Get yarn cache directory path
|
|
|
|
id: yarnCacheDirPath
|
|
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
2021-03-10 13:24:52 -05:00
|
|
|
if: env.SHOULD_BUILD == 'yes'
|
2021-03-10 12:58:36 -05:00
|
|
|
|
|
|
|
- name: Cache yarn directory
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
2021-03-10 13:47:13 -05:00
|
|
|
key: linux-${{ matrix.npm_arch }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
|
|
|
restore-keys: linux-${{ matrix.npm_arch }}-yarnCacheDir-
|
2021-03-10 12:58:36 -05:00
|
|
|
if: env.SHOULD_BUILD == 'yes'
|
|
|
|
|
2020-09-20 17:26:06 -04:00
|
|
|
- name: Build
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-10-05 13:12:28 -04:00
|
|
|
npm_config_arch: ${{ matrix.npm_arch }}
|
2020-09-20 17:26:06 -04:00
|
|
|
run: ./build.sh
|
|
|
|
if: env.SHOULD_BUILD == 'yes'
|
|
|
|
|
|
|
|
- name: Zip release
|
|
|
|
run: |
|
2020-10-05 13:12:28 -04:00
|
|
|
cd VSCode-linux-${VSCODE_ARCH}
|
2021-08-27 10:01:17 -04:00
|
|
|
tar czf ../VSCodium-linux-${VSCODE_ARCH}-${MS_TAG}.tar.gz .
|
2021-03-10 10:48:45 -05:00
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
2021-09-09 04:18:22 -04:00
|
|
|
|
2021-09-08 19:38:07 -04:00
|
|
|
- name: Move/rename build artifacts
|
2021-09-15 17:04:58 -04:00
|
|
|
shell: bash
|
2021-09-08 19:38:07 -04:00
|
|
|
run: |
|
2021-09-09 04:18:22 -04:00
|
|
|
cp vscode/.build/linux/deb/*/deb/*.deb .
|
|
|
|
cp vscode/.build/linux/rpm/*/*.rpm .
|
|
|
|
|
|
|
|
if [[ "${VSCODE_ARCH}" == "x64" ]]; then
|
|
|
|
cp build/linux/appimage/out/*.AppImage* .
|
|
|
|
fi
|
2021-09-08 19:38:07 -04:00
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
2020-09-20 17:26:06 -04:00
|
|
|
|
|
|
|
- name: Generate shasums
|
|
|
|
run: ./sum.sh
|
2021-03-10 10:48:45 -05:00
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
2020-09-20 17:26:06 -04:00
|
|
|
|
|
|
|
- name: Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
2021-03-10 10:48:45 -05:00
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
2020-09-20 17:26:06 -04:00
|
|
|
with:
|
2021-08-27 10:01:17 -04:00
|
|
|
tag_name: ${{ env.MS_TAG }}
|
2020-09-20 17:26:06 -04:00
|
|
|
files: |
|
|
|
|
./*.sha256
|
|
|
|
./*.zip
|
|
|
|
./*.tar.gz
|
|
|
|
./*.deb
|
|
|
|
./*.rpm
|
2021-06-05 19:47:16 -04:00
|
|
|
./VSCodium-*.AppImage
|
|
|
|
./VSCodium-*.AppImage.zsync
|
2020-09-20 17:26:06 -04:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Update versions repo
|
2021-03-10 10:48:45 -05:00
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
2020-09-20 17:26:06 -04:00
|
|
|
run: ./update_version.sh
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
|
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
|
|
|
|