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