vscodium/.github/workflows/linux.yml

149 lines
4 KiB
YAML
Raw Normal View History

2020-09-20 17:35:03 -04:00
name: linux_build
on:
workflow_dispatch:
2020-09-20 18:28:07 -04:00
schedule:
- cron: '0 0 * * *'
push:
pull_request:
branches: [ master ]
jobs:
2021-12-17 17:21:31 -05:00
release:
2021-12-17 19:41:21 -05:00
runs-on: ubuntu-latest
2021-10-01 12:47:10 -04:00
container:
2020-10-05 19:14:45 -04:00
image: ${{ matrix.image }}
env:
OS_NAME: 'linux'
VSCODE_ARCH: ${{ matrix.vscode_arch }}
strategy:
2020-09-20 17:35:03 -04:00
fail-fast: false
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
steps:
2022-04-11 08:37:54 -04:00
- uses: actions/checkout@v3
2021-10-01 12:47:10 -04:00
- name: Install GH
run: ./install_gh.sh
- name: Setup Node.js environment
2022-04-11 08:37:54 -04:00
uses: actions/setup-node@v3
with:
node-version: 14
2020-10-05 19:46:22 -04:00
- name: Install Yarn
run: npm install -g yarn
- name: Clone VSCode repo
run: ./get_repo.sh
2021-10-01 12:47:10 -04:00
- name: Check PR or cron
run: ./check_cron_or_pr.sh
- name: Check existing VSCodium tags/releases
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./check_tags.sh
2021-03-10 10:48:45 -05:00
if: env.SHOULD_DEPLOY == 'yes'
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
2022-04-11 08:37:54 -04:00
uses: actions/cache@v3
2021-03-10 12:58:36 -05:00
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'
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
npm_config_arch: ${{ matrix.npm_arch }}
run: ./build.sh
if: env.SHOULD_BUILD == 'yes'
2021-10-01 12:47:10 -04:00
- name: Prepare artifacts
run: ./prepare_artifacts.sh
2021-03-10 10:48:45 -05:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- name: Release
env:
2021-11-10 04:13:12 -05:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2021-10-01 12:47:10 -04:00
run: ./release.sh
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- name: Update versions repo
run: ./update_version.sh
env:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}
2021-12-17 17:21:31 -05:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
snap:
needs: release
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform:
- amd64
# - arm64
2021-12-17 17:21:31 -05:00
steps:
2022-04-11 08:37:54 -04:00
- uses: actions/checkout@v3
2021-12-17 19:35:10 -05:00
- name: Check version
run: ./stores/snapcraft/check_version.sh
env:
ARCHITECTURE: ${{ matrix.platform }}
SNAP_STORE_LOGIN: ${{ secrets.SNAP_STORE_LOGIN }}
2021-12-17 17:21:31 -05:00
# - uses: docker/setup-qemu-action@v1
# if: env.SHOULD_DEPLOY == 'yes'
# - uses: diddlesnaps/snapcraft-multiarch-action@v1
# with:
# path: stores/snapcraft
# architecture: ${{ matrix.platform }}
# id: build
# if: env.SHOULD_DEPLOY == 'yes'
# - uses: diddlesnaps/snapcraft-review-action@v1
# with:
# snap: ${{ steps.build.outputs.snap }}
# isClassic: 'true'
# if: env.SHOULD_DEPLOY == 'yes'
- uses: snapcore/action-build@v1
with:
path: stores/snapcraft
id: build
2021-12-17 17:21:31 -05:00
if: env.SHOULD_DEPLOY == 'yes'
2021-12-17 22:03:23 -05:00
- uses: snapcore/action-publish@v1
with:
store_login: ${{ secrets.SNAP_STORE_LOGIN }}
snap: ${{ steps.build.outputs.snap }}
release: stable
2021-12-17 17:21:31 -05:00
if: env.SHOULD_DEPLOY == 'yes'