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

281 lines
8 KiB
YAML
Raw Normal View History

2022-08-29 09:13:25 -04:00
name: insider-linux
on:
workflow_dispatch:
inputs:
release_version:
type: string
description: Forced release version
new_release:
type: boolean
description: Force new Release
2020-09-20 18:28:07 -04:00
schedule:
- cron: '0 8 * * *'
push:
2022-08-29 09:13:25 -04:00
branches: [ insider ]
2022-08-22 18:59:49 -04:00
paths-ignore:
- '**/*.md'
pull_request:
2022-08-29 09:13:25 -04:00
branches: [ insider ]
2022-08-22 18:59:49 -04:00
paths-ignore:
- '**/*.md'
2022-10-24 08:34:38 -04:00
env:
2022-10-24 09:00:38 -04:00
APP_NAME: VSCodium
2022-10-24 08:34:38 -04:00
ASSETS_REPOSITORY: ${{ github.repository }}-insiders
GITHUB_BRANCH: insider
2022-10-24 09:00:38 -04:00
OS_NAME: linux
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
2022-10-24 08:34:38 -04:00
VSCODE_QUALITY: insider
jobs:
check:
runs-on: ubuntu-latest
container:
image: vscodium/vscodium-linux-build-agent:bionic-x64
outputs:
MS_COMMIT: ${{ env.MS_COMMIT }}
MS_TAG: ${{ env.MS_TAG }}
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
SHOULD_BUILD: ${{ env.SHOULD_BUILD }}
SHOULD_DEPLOY: ${{ env.SHOULD_DEPLOY }}
steps:
- uses: actions/checkout@v3
with:
2022-10-23 13:53:10 -04:00
ref: ${{ env.GITHUB_BRANCH }}
- name: Clone VSCode repo
env:
RELEASE_VERSION: ${{ github.event.inputs.release_version }}
run: ./get_repo.sh
- name: Check PR or cron
run: ./check_cron_or_pr.sh
dependencies:
2022-10-24 06:27:29 -04:00
needs:
- check
runs-on: ubuntu-latest
2022-10-24 09:00:38 -04:00
env:
MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }}
MS_TAG: ${{ needs.check.outputs.MS_TAG }}
RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }}
strategy:
fail-fast: false
matrix:
include:
- vscode_arch: x64
image: vscodium/vscodium-linux-build-agent:centos7-devtoolset8-x64
2022-10-24 06:04:36 -04:00
# - vscode_arch: arm64
# image: vscodium/vscodium-linux-build-agent:bionic-x64
2022-10-24 09:00:38 -04:00
container:
image: ${{ matrix.image }}
if: needs.check.outputs.SHOULD_BUILD == 'yes' || needs.check.outputs.SHOULD_DEPLOY == 'yes'
steps:
- uses: actions/checkout@v3
with:
2022-10-23 13:53:10 -04:00
ref: ${{ env.GITHUB_BRANCH }}
- name: Clone VSCode repo
run: ./get_repo.sh
2022-10-23 12:13:18 -04:00
- uses: docker/setup-qemu-action@v2
if: matrix.vscode_arch == 'arm64'
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Yarn
run: npm install -g yarn
2022-10-23 12:13:18 -04:00
- name: Install remote dependencies (x64)
env:
2022-10-23 12:13:18 -04:00
npm_config_arch: x64
run: ./install_remote_dependencies.sh
2022-10-23 12:13:18 -04:00
if: matrix.vscode_arch == 'x64'
2022-10-24 06:04:36 -04:00
# - name: Install remote dependencies (arm64)
# run: |
# set -e
# docker run -e VSCODE_QUALITY -e GITHUB_TOKEN -v $(pwd):/root/vscodium vscodium/vscodium-linux-build-agent:centos7-devtoolset8-arm64 /root/vscodium/install_remote_dependencies.sh
# if: matrix.vscode_arch == 'arm64'
- name: Save remote dependencies
uses: actions/upload-artifact@v3
with:
name: remote-dependencies-${{ matrix.vscode_arch }}
2022-11-10 12:18:26 -05:00
path: ./remote-dependencies.tar
2022-10-24 06:55:05 -04:00
retention-days: ${{ needs.check.outputs.SHOULD_DEPLOY == 'yes' && 30 || 1 }}
2022-09-19 01:27:12 -04:00
build:
2022-10-24 06:27:29 -04:00
needs:
- check
- dependencies
2021-12-17 19:41:21 -05:00
runs-on: ubuntu-latest
2022-10-24 09:00:38 -04:00
env:
MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }}
MS_TAG: ${{ needs.check.outputs.MS_TAG }}
RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }}
SHOULD_BUILD: ${{ needs.check.outputs.SHOULD_BUILD }}
SHOULD_DEPLOY: ${{ needs.check.outputs.SHOULD_DEPLOY }}
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
- vscode_arch: armhf
npm_arch: armv7l
image: vscodium/vscodium-linux-build-agent:stretch-armhf
2022-10-24 09:00:38 -04:00
container:
image: ${{ matrix.image }}
env:
VSCODE_ARCH: ${{ matrix.vscode_arch }}
2022-10-24 09:51:39 -04:00
outputs:
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
SHOULD_BUILD: ${{ env.SHOULD_BUILD }}
SHOULD_DEPLOY: ${{ env.SHOULD_DEPLOY }}
if: needs.check.outputs.SHOULD_BUILD == 'yes' || needs.check.outputs.SHOULD_DEPLOY == 'yes'
steps:
- uses: actions/checkout@v3
with:
2022-10-23 13:53:10 -04:00
ref: ${{ env.GITHUB_BRANCH }}
- name: Clone VSCode repo
run: ./get_repo.sh
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:
2022-04-19 16:55:02 -04:00
node-version: 16
2020-10-05 19:46:22 -04:00
- name: Install Yarn
run: npm install -g yarn
- name: Check existing VSCodium tags/releases
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NEW_RELEASE: ${{ github.event.inputs.new_release }}
run: ./check_tags.sh
2021-03-10 10:48:45 -05:00
if: env.SHOULD_DEPLOY == 'yes'
- name: Restore remote dependencies
2022-10-23 11:54:17 -04:00
uses: actions/download-artifact@v3
with:
name: remote-dependencies-${{ matrix.vscode_arch }}
2022-10-24 06:27:29 -04:00
if: env.SHOULD_BUILD == 'yes' && matrix.vscode_arch == 'x64'
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
npm_config_arch: ${{ matrix.npm_arch }}
run: ./build.sh
if: env.SHOULD_BUILD == 'yes'
2022-10-06 16:15:41 -04:00
- name: Prepare assets
run: ./prepare_assets.sh
2021-03-10 10:48:45 -05:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
2022-09-19 11:09:16 -04:00
GITHUB_USERNAME: ${{ github.repository_owner }}
2021-10-01 12:47:10 -04:00
run: ./release.sh
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- name: Update versions repo
env:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}
2022-09-19 11:09:16 -04:00
run: ./update_version.sh
2021-12-17 17:21:31 -05:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
2022-09-26 08:42:54 -04:00
aur:
2022-10-24 06:27:29 -04:00
needs:
- build
2022-09-26 08:42:54 -04:00
runs-on: ubuntu-latest
2022-10-17 05:13:23 -04:00
strategy:
fail-fast: false
matrix:
include:
- package_name: vscodium-insiders-bin
- package_name: vscodium-insiders
2022-10-24 09:51:39 -04:00
if: needs.build.outputs.SHOULD_DEPLOY == 'yes'
2022-09-26 08:42:54 -04:00
steps:
- name: Get version
env:
2022-10-24 09:51:39 -04:00
RELEASE_VERSION: ${{ needs.build.outputs.RELEASE_VERSION }}
run: echo "PACKAGE_VERSION=${RELEASE_VERSION/-*/}" >> "${GITHUB_ENV}"
2022-10-17 05:13:23 -04:00
- name: Publish ${{ matrix.package_name }}
2022-09-26 08:42:54 -04:00
uses: zokugun/github-actions-aur-releaser@v1
with:
2022-10-17 05:13:23 -04:00
package_name: ${{ matrix.package_name }}
package_version: ${{ env.PACKAGE_VERSION }}
2022-09-26 18:16:46 -04:00
aur_private_key: ${{ secrets.AUR_PRIVATE_KEY }}
aur_username: ${{ secrets.AUR_USERNAME }}
aur_email: ${{ secrets.AUR_EMAIL }}
2022-09-26 08:42:54 -04:00
2021-12-17 17:21:31 -05:00
snap:
2022-10-24 06:27:29 -04:00
needs:
- build
runs-on: ubuntu-latest
2022-08-29 09:13:25 -04:00
env:
2022-10-06 16:15:41 -04:00
APP_NAME: codium
strategy:
fail-fast: false
matrix:
platform:
- amd64
2022-08-24 19:18:03 -04:00
- arm64
2022-10-24 09:51:39 -04:00
# if: needs.build.outputs.SHOULD_DEPLOY == 'yes'
2022-10-24 09:00:38 -04:00
if: false
2021-12-17 17:21:31 -05:00
steps:
2022-04-11 08:37:54 -04:00
- uses: actions/checkout@v3
2022-08-29 09:13:25 -04:00
with:
ref: insider
2021-12-17 19:35:10 -05:00
- name: Check version
env:
ARCHITECTURE: ${{ matrix.platform }}
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_STORE_LOGIN }}
2022-10-09 13:56:36 -04:00
run: ./stores/snapcraft/check_version.sh
2021-12-17 17:21:31 -05:00
- uses: docker/setup-qemu-action@v2
2022-08-24 19:18:03 -04:00
if: env.SHOULD_DEPLOY == 'yes'
2022-08-24 19:18:03 -04:00
- uses: diddlesnaps/snapcraft-multiarch-action@v1
with:
2022-08-29 09:13:25 -04:00
path: stores/snapcraft/insider
2022-08-24 19:18:03 -04:00
architecture: ${{ matrix.platform }}
id: build
2021-12-17 17:21:31 -05:00
if: env.SHOULD_DEPLOY == 'yes'
2022-08-24 19:18:03 -04: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-17 22:03:23 -05:00
with:
snap: ${{ steps.build.outputs.snap }}
2022-09-05 03:33:52 -04:00
release: edge
2021-12-17 17:21:31 -05:00
if: env.SHOULD_DEPLOY == 'yes'