2022-08-29 09:13:25 -04:00
|
|
|
name: stable-linux
|
2020-09-20 17:26:06 -04:00
|
|
|
|
|
|
|
on:
|
2021-03-28 17:07:35 -04:00
|
|
|
workflow_dispatch:
|
2022-08-16 09:33:34 -04:00
|
|
|
inputs:
|
|
|
|
new_release:
|
2022-08-17 00:23:19 -04:00
|
|
|
type: boolean
|
2022-08-16 09:33:34 -04:00
|
|
|
description: Force new Release
|
2023-01-08 09:33:27 -05:00
|
|
|
force_version:
|
|
|
|
type: boolean
|
|
|
|
description: Force update version
|
2023-08-04 08:36:30 -04:00
|
|
|
test_asset_builder:
|
|
|
|
type: boolean
|
|
|
|
description: Test the assets builder
|
2020-09-20 18:28:07 -04:00
|
|
|
schedule:
|
2022-09-02 11:12:41 -04:00
|
|
|
- cron: '0 18 * * *'
|
2020-09-20 17:26:06 -04:00
|
|
|
push:
|
2022-08-29 09:13:25 -04:00
|
|
|
branches: [ master ]
|
2022-08-22 18:59:49 -04:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
2020-09-20 17:26:06 -04:00
|
|
|
pull_request:
|
2022-08-29 09:13:25 -04:00
|
|
|
branches: [ master ]
|
2022-08-22 18:59:49 -04:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
2020-09-20 17:26:06 -04:00
|
|
|
|
2022-11-02 15:03:09 -04:00
|
|
|
env:
|
|
|
|
APP_NAME: VSCodium
|
|
|
|
ASSETS_REPOSITORY: ${{ github.repository }}
|
|
|
|
OS_NAME: linux
|
|
|
|
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
|
|
|
|
VSCODE_QUALITY: stable
|
|
|
|
|
2020-09-20 17:26:06 -04:00
|
|
|
jobs:
|
2022-11-02 15:03:09 -04:00
|
|
|
check:
|
2021-12-17 19:41:21 -05:00
|
|
|
runs-on: ubuntu-latest
|
2022-11-02 15:03:09 -04:00
|
|
|
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:
|
|
|
|
ref: ${{ env.GITHUB_BRANCH }}
|
|
|
|
|
|
|
|
- name: Clone VSCode repo
|
|
|
|
run: ./get_repo.sh
|
|
|
|
|
|
|
|
- name: Check PR or cron
|
2023-08-04 08:36:30 -04:00
|
|
|
env:
|
|
|
|
TEST_ASSET_BUILDER: ${{ github.event.inputs.test_asset_builder }}
|
2022-11-02 15:03:09 -04:00
|
|
|
run: ./check_cron_or_pr.sh
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
needs:
|
|
|
|
- check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
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
|
|
|
|
# - vscode_arch: arm64
|
2023-08-04 08:00:28 -04:00
|
|
|
# image: vscodium/vscodium-linux-build-agent:centos7-devtoolset8-arm64
|
2021-10-01 12:47:10 -04:00
|
|
|
container:
|
2020-10-05 19:14:45 -04:00
|
|
|
image: ${{ matrix.image }}
|
2022-11-02 15:03:09 -04:00
|
|
|
if: needs.check.outputs.SHOULD_BUILD == 'yes' || needs.check.outputs.SHOULD_DEPLOY == 'yes'
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
ref: ${{ env.GITHUB_BRANCH }}
|
|
|
|
|
|
|
|
- name: Clone VSCode repo
|
|
|
|
run: ./get_repo.sh
|
|
|
|
|
|
|
|
- uses: docker/setup-qemu-action@v2
|
2023-06-05 02:50:34 -04:00
|
|
|
if: matrix.vscode_arch == 'arm64' || matrix.vscode_arch == 'ppc64le'
|
2022-11-02 15:03:09 -04:00
|
|
|
|
2023-08-04 08:00:28 -04:00
|
|
|
- name: Install remote dependencies
|
2022-11-02 15:03:09 -04:00
|
|
|
run: ./install_remote_dependencies.sh
|
|
|
|
|
|
|
|
- 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-11-02 15:03:09 -04:00
|
|
|
retention-days: ${{ needs.check.outputs.SHOULD_DEPLOY == 'yes' && 30 || 1 }}
|
|
|
|
|
|
|
|
build:
|
|
|
|
needs:
|
|
|
|
- check
|
|
|
|
- dependencies
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
2023-06-16 12:28:28 -04:00
|
|
|
DISABLE_UPDATE: 'yes'
|
2022-11-02 15:03:09 -04:00
|
|
|
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-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
|
2023-08-04 08:00:28 -04:00
|
|
|
image: vscodium/vscodium-linux-build-agent:bionic-arm64
|
2023-06-02 10:32:07 -04:00
|
|
|
- vscode_arch: armhf
|
|
|
|
npm_arch: arm
|
2023-08-04 08:00:28 -04:00
|
|
|
image: vscodium/vscodium-linux-build-agent:bionic-armhf
|
2023-06-05 02:50:34 -04:00
|
|
|
- vscode_arch: ppc64le
|
2023-06-14 02:16:06 -04:00
|
|
|
npm_arch: ppc64
|
2023-06-05 02:50:34 -04:00
|
|
|
image: vscodium/vscodium-linux-build-agent:bionic-ppc64le
|
2022-11-02 15:03:09 -04:00
|
|
|
container:
|
|
|
|
image: ${{ matrix.image }}
|
|
|
|
env:
|
|
|
|
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
2022-09-19 05:43:28 -04:00
|
|
|
outputs:
|
|
|
|
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
|
2022-11-02 15:03:09 -04:00
|
|
|
SHOULD_BUILD: ${{ env.SHOULD_BUILD }}
|
2022-09-19 05:43:28 -04:00
|
|
|
SHOULD_DEPLOY: ${{ env.SHOULD_DEPLOY }}
|
2022-11-02 15:03:09 -04:00
|
|
|
if: needs.check.outputs.SHOULD_BUILD == 'yes' || needs.check.outputs.SHOULD_DEPLOY == 'yes'
|
2020-09-20 18:05:55 -04:00
|
|
|
|
2020-09-20 17:26:06 -04:00
|
|
|
steps:
|
2022-04-11 08:37:54 -04:00
|
|
|
- uses: actions/checkout@v3
|
2020-09-20 17:26:06 -04:00
|
|
|
|
2022-11-02 15:03:09 -04:00
|
|
|
- name: Clone VSCode repo
|
|
|
|
run: ./get_repo.sh
|
|
|
|
|
2021-10-01 12:47:10 -04:00
|
|
|
- name: Install GH
|
|
|
|
run: ./install_gh.sh
|
|
|
|
|
2020-09-20 17:26:06 -04:00
|
|
|
- name: Check existing VSCodium tags/releases
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-08-16 09:33:34 -04:00
|
|
|
NEW_RELEASE: ${{ github.event.inputs.new_release }}
|
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
|
|
|
|
2022-11-02 15:03:09 -04:00
|
|
|
- name: Restore remote dependencies
|
|
|
|
uses: actions/download-artifact@v3
|
2021-03-10 12:58:36 -05:00
|
|
|
with:
|
2022-11-02 15:03:09 -04:00
|
|
|
name: remote-dependencies-${{ matrix.vscode_arch }}
|
|
|
|
if: env.SHOULD_BUILD == 'yes' && matrix.vscode_arch == 'x64'
|
2021-03-10 12:58:36 -05:00
|
|
|
|
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'
|
|
|
|
|
2022-10-06 16:15:41 -04:00
|
|
|
- name: Prepare assets
|
|
|
|
run: ./prepare_assets.sh
|
2023-08-04 08:36:30 -04:00
|
|
|
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.test_asset_builder == 'true')
|
2021-09-09 04:18:22 -04:00
|
|
|
|
2020-09-20 17:26:06 -04:00
|
|
|
- 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'
|
2020-09-20 17:26:06 -04:00
|
|
|
|
|
|
|
- name: Update versions repo
|
|
|
|
env:
|
2023-01-08 09:33:27 -05:00
|
|
|
FORCE_UPDATE: ${{ github.event.inputs.force_version }}
|
2020-09-20 17:26:06 -04:00
|
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
|
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
2022-09-19 11:09:16 -04:00
|
|
|
run: ./update_version.sh
|
2023-01-08 09:33:27 -05:00
|
|
|
if: env.SHOULD_DEPLOY == 'yes'
|
2021-12-17 17:21:31 -05:00
|
|
|
|
2022-10-04 15:57:06 -04:00
|
|
|
aur:
|
2022-11-02 15:03:09 -04:00
|
|
|
needs:
|
|
|
|
- build
|
2022-10-04 15:57:06 -04:00
|
|
|
runs-on: ubuntu-latest
|
2022-10-17 05:13:23 -04:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- package_name: vscodium
|
|
|
|
package_type: stable
|
|
|
|
- package_name: vscodium-git
|
|
|
|
package_type: rolling
|
2022-10-04 15:57:06 -04:00
|
|
|
if: needs.build.outputs.SHOULD_DEPLOY == 'yes'
|
|
|
|
|
|
|
|
steps:
|
2022-10-17 05:13:23 -04:00
|
|
|
- name: Publish ${{ matrix.package_name }}
|
2022-10-04 15:57:06 -04:00
|
|
|
uses: zokugun/github-actions-aur-releaser@v1
|
|
|
|
with:
|
2022-10-17 05:13:23 -04:00
|
|
|
package_name: ${{ matrix.package_name }}
|
|
|
|
package_type: ${{ matrix.package_type }}
|
2022-10-04 15:57:06 -04:00
|
|
|
aur_private_key: ${{ secrets.AUR_PRIVATE_KEY }}
|
|
|
|
aur_username: ${{ secrets.AUR_USERNAME }}
|
|
|
|
aur_email: ${{ secrets.AUR_EMAIL }}
|
|
|
|
|
2021-12-17 17:21:31 -05:00
|
|
|
snap:
|
2022-11-02 15:03:09 -04:00
|
|
|
needs:
|
|
|
|
- build
|
2021-12-17 20:25:18 -05:00
|
|
|
runs-on: ubuntu-latest
|
2022-10-06 16:15:41 -04:00
|
|
|
env:
|
|
|
|
APP_NAME: codium
|
2021-12-17 20:25:18 -05:00
|
|
|
strategy:
|
2021-12-17 21:28:34 -05:00
|
|
|
fail-fast: false
|
2021-12-17 20:25:18 -05:00
|
|
|
matrix:
|
|
|
|
platform:
|
|
|
|
- amd64
|
2022-08-24 19:18:03 -04:00
|
|
|
- arm64
|
2022-09-19 01:27:12 -04:00
|
|
|
if: needs.build.outputs.SHOULD_DEPLOY == 'yes'
|
2021-12-17 17:21:31 -05:00
|
|
|
|
|
|
|
steps:
|
2022-04-11 08:37:54 -04:00
|
|
|
- uses: actions/checkout@v3
|
2020-09-20 17:26:06 -04:00
|
|
|
|
2021-12-17 19:35:10 -05:00
|
|
|
- name: Check version
|
2021-12-17 20:58:54 -05:00
|
|
|
env:
|
2021-12-17 21:28:34 -05:00
|
|
|
ARCHITECTURE: ${{ matrix.platform }}
|
2022-06-16 06:20:10 -04:00
|
|
|
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
|
|
|
|
2023-03-03 08:25:30 -05:00
|
|
|
- uses: docker/setup-qemu-action@v2
|
2022-08-24 19:18:03 -04:00
|
|
|
if: env.SHOULD_DEPLOY == 'yes'
|
2022-03-31 04:46:32 -04:00
|
|
|
|
2022-08-24 19:18:03 -04:00
|
|
|
- uses: diddlesnaps/snapcraft-multiarch-action@v1
|
2021-12-17 20:25:18 -05:00
|
|
|
with:
|
2022-08-29 09:13:25 -04:00
|
|
|
path: stores/snapcraft/stable
|
2022-08-24 19:18:03 -04:00
|
|
|
architecture: ${{ matrix.platform }}
|
2021-12-17 20:25:18 -05:00
|
|
|
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'
|
|
|
|
|
2022-06-16 17:06:07 -04:00
|
|
|
- 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 }}
|
2021-12-18 09:42:43 -05:00
|
|
|
release: stable
|
2021-12-17 17:21:31 -05:00
|
|
|
if: env.SHOULD_DEPLOY == 'yes'
|
2022-10-09 13:17:21 -04:00
|
|
|
|
|
|
|
deb-rpm-repo-hook:
|
2022-11-02 15:03:09 -04:00
|
|
|
needs:
|
|
|
|
- build
|
2022-10-09 13:17:21 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: needs.build.outputs.SHOULD_DEPLOY == 'yes'
|
2022-10-09 13:56:36 -04:00
|
|
|
|
2022-10-09 13:17:21 -04:00
|
|
|
steps:
|
|
|
|
- name: Trigger repository rebuild
|
|
|
|
env:
|
2022-10-09 13:56:36 -04:00
|
|
|
GL_PAGES_TOKEN: ${{ secrets.GL_PAGES_TOKEN }}
|
|
|
|
run: curl -X POST --fail -F token="${GL_PAGES_TOKEN}" -F ref=master https://gitlab.com/api/v4/projects/8762263/trigger/pipeline
|