2020-09-20 17:35:03 -04:00
|
|
|
name: linux_build
|
2020-09-20 17:26:06 -04:00
|
|
|
|
|
|
|
on:
|
2020-09-20 18:28:07 -04:00
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *'
|
2020-09-20 17:26:06 -04:00
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linux:
|
|
|
|
runs-on: ubuntu-latest
|
2020-10-05 19:14:45 -04:00
|
|
|
container:
|
|
|
|
image: ${{ matrix.image }}
|
|
|
|
env:
|
|
|
|
OS_NAME: 'linux'
|
|
|
|
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
|
|
|
|
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:12:28 -04:00
|
|
|
vscode_arch: [x64, arm64, armhf]
|
2020-10-05 13:21:49 -04:00
|
|
|
include:
|
|
|
|
- vscode_arch: x64
|
|
|
|
npm_arch: x64
|
2020-10-05 18:30:05 -04:00
|
|
|
image: vscodium/vscodium-linux-build-agent:x64
|
2020-10-05 13:21:49 -04:00
|
|
|
- vscode_arch: arm64
|
|
|
|
npm_arch: arm64
|
2020-10-05 18:30:05 -04:00
|
|
|
image: vscodium/vscodium-linux-build-agent:buster-arm64
|
2020-10-05 13:21:49 -04:00
|
|
|
- vscode_arch: armhf
|
|
|
|
npm_arch: armv7l
|
2020-10-05 18:30:05 -04:00
|
|
|
image: vscodium/vscodium-linux-build-agent:buster-armhf
|
2020-09-20 18:05:55 -04:00
|
|
|
|
2020-09-20 17:26:06 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup Node.js environment
|
|
|
|
uses: actions/setup-node@v1.4.3
|
|
|
|
with:
|
|
|
|
node-version: 12.14.1
|
|
|
|
|
|
|
|
- name: Clone VSCode repo
|
2020-10-05 19:31:17 -04:00
|
|
|
run: ./get_repo.sh
|
2020-09-20 17:26:06 -04:00
|
|
|
|
|
|
|
- name: Check existing VSCodium tags/releases
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-10-05 19:31:17 -04:00
|
|
|
run: ./check_tags.sh
|
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'
|
|
|
|
|
|
|
|
- name: Zip release
|
|
|
|
run: |
|
2020-10-05 13:12:28 -04:00
|
|
|
cd VSCode-linux-${VSCODE_ARCH}
|
|
|
|
tar czf ../VSCodium-linux-${VSCODE_ARCH}-${LATEST_MS_TAG}.tar.gz .
|
2020-09-20 17:26:06 -04:00
|
|
|
if: env.SHOULD_BUILD == 'yes'
|
|
|
|
|
|
|
|
- name: Generate shasums
|
|
|
|
run: ./sum.sh
|
|
|
|
if: env.SHOULD_BUILD == 'yes'
|
|
|
|
|
|
|
|
- name: Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: env.SHOULD_BUILD == 'yes'
|
|
|
|
with:
|
|
|
|
tag_name: ${{ env.LATEST_MS_TAG }}
|
|
|
|
files: |
|
|
|
|
./*.sha256
|
|
|
|
./*.zip
|
|
|
|
./*.tar.gz
|
|
|
|
./*.deb
|
|
|
|
./*.rpm
|
|
|
|
./*.AppImage
|
|
|
|
./*.AppImage.zsync
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Update versions repo
|
|
|
|
if: env.SHOULD_BUILD == 'yes'
|
|
|
|
run: ./update_version.sh
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
|
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
|
|
|
|