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

261 lines
7.6 KiB
YAML
Raw Normal View History

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