vscodium/.github/workflows/insider-linux.yml

162 lines
4.4 KiB
YAML
Raw Normal View History

2022-08-29 15:13:25 +02:00
name: insider-linux
on:
workflow_dispatch:
inputs:
release_version:
type: string
description: Forced release version
2020-09-20 15:28:07 -07:00
schedule:
2022-08-29 15:13:25 +02:00
- cron: '0 1 * * *'
push:
2022-08-29 15:13:25 +02:00
branches: [ insider ]
2022-08-23 00:59:49 +02:00
paths-ignore:
- '**/*.md'
pull_request:
2022-08-29 15:13:25 +02:00
branches: [ insider ]
2022-08-23 00:59:49 +02:00
paths-ignore:
- '**/*.md'
jobs:
2021-12-17 23:21:31 +01:00
release:
2021-12-18 01:41:21 +01:00
runs-on: ubuntu-latest
2021-10-01 18:47:10 +02:00
container:
2020-10-05 16:14:45 -07:00
image: ${{ matrix.image }}
env:
OS_NAME: 'linux'
VSCODE_ARCH: ${{ matrix.vscode_arch }}
2022-08-29 15:13:25 +02:00
VSCODE_QUALITY: 'insider'
strategy:
2020-09-20 14:35:03 -07:00
fail-fast: false
matrix:
2020-10-05 10:21:49 -07:00
include:
- vscode_arch: x64
npm_arch: x64
2021-02-06 21:48:11 -08:00
image: vscodium/vscodium-linux-build-agent:bionic-x64
2020-10-05 10:21:49 -07:00
- vscode_arch: arm64
npm_arch: arm64
2021-02-06 21:48:11 -08:00
image: vscodium/vscodium-linux-build-agent:stretch-arm64
- vscode_arch: armhf
npm_arch: armv7l
image: vscodium/vscodium-linux-build-agent:stretch-armhf
steps:
2022-04-11 13:37:54 +01:00
- uses: actions/checkout@v3
2022-08-29 15:13:25 +02:00
with:
ref: insider
2021-10-01 18:47:10 +02:00
- name: Install GH
run: ./install_gh.sh
- name: Setup Node.js environment
2022-04-11 13:37:54 +01:00
uses: actions/setup-node@v3
with:
2022-04-19 22:55:02 +02:00
node-version: 16
2020-10-05 16:46:22 -07:00
- name: Install Yarn
run: npm install -g yarn
- name: Clone VSCode repo
env:
RELEASE_VERSION: ${{ github.event.inputs.release_version }}
run: ./get_repo.sh
2021-10-01 18:47:10 +02: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 16:48:45 +01:00
if: env.SHOULD_DEPLOY == 'yes'
2021-03-10 18:58:36 +01:00
- name: Compute cache key
id: yarnCacheKey
run: echo "::set-output name=value::$(node build/azure-pipelines/computeYarnCacheKey.js)"
2021-03-10 19:24:52 +01:00
if: env.SHOULD_BUILD == 'yes'
2021-03-10 18:58:36 +01:00
- name: Get yarn cache directory path
id: yarnCacheDirPath
run: echo "::set-output name=dir::$(yarn cache dir)"
2021-03-10 19:24:52 +01:00
if: env.SHOULD_BUILD == 'yes'
2021-03-10 18:58:36 +01:00
- name: Cache yarn directory
2022-04-11 13:37:54 +01:00
uses: actions/cache@v3
2021-03-10 18:58:36 +01:00
with:
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
2021-03-10 19:47:13 +01:00
key: linux-${{ matrix.npm_arch }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
restore-keys: linux-${{ matrix.npm_arch }}-yarnCacheDir-
2021-03-10 18:58:36 +01: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 18:47:10 +02:00
- name: Prepare artifacts
run: ./prepare_artifacts.sh
2021-03-10 16:48:45 +01:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
2021-10-01 18:47:10 +02: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 23:21:31 +01:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
snap:
2022-08-29 15:13:25 +02:00
if: ${{ false }} # more testing need to be done after the first release
2021-12-17 23:21:31 +01:00
needs: release
runs-on: ubuntu-latest
2022-08-29 15:13:25 +02:00
env:
VSCODE_QUALITY: 'insider'
strategy:
fail-fast: false
matrix:
platform:
- amd64
2022-08-25 01:18:03 +02:00
- arm64
2021-12-17 23:21:31 +01:00
steps:
2022-04-11 13:37:54 +01:00
- uses: actions/checkout@v3
2022-08-29 15:13:25 +02:00
with:
ref: insider
2021-12-18 01:35:10 +01:00
- name: Check version
run: ./stores/snapcraft/check_version.sh
env:
ARCHITECTURE: ${{ matrix.platform }}
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_STORE_LOGIN }}
2021-12-17 23:21:31 +01:00
2022-08-25 01:18:03 +02:00
- uses: docker/setup-qemu-action@v1
if: env.SHOULD_DEPLOY == 'yes'
2022-08-25 01:18:03 +02:00
- uses: diddlesnaps/snapcraft-multiarch-action@v1
with:
2022-08-29 15:13:25 +02:00
path: stores/snapcraft/insider
2022-08-25 01:18:03 +02:00
architecture: ${{ matrix.platform }}
id: build
2021-12-17 23:21:31 +01:00
if: env.SHOULD_DEPLOY == 'yes'
2022-08-25 01:18:03 +02:00
- uses: diddlesnaps/snapcraft-review-action@v1
with:
snap: ${{ steps.build.outputs.snap }}
isClassic: 'true'
if: env.SHOULD_DEPLOY == 'yes'
- uses: snapcore/action-publish@master
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_STORE_LOGIN }}
2021-12-18 04:03:23 +01:00
with:
snap: ${{ steps.build.outputs.snap }}
release: stable
2021-12-17 23:21:31 +01:00
if: env.SHOULD_DEPLOY == 'yes'