mirror of
https://github.com/cdr/code-server.git
synced 2026-05-09 04:50:49 +02:00
Fix cross-compiled releases
Instead of doing our own thing, make use of VS Code's setup script.
This commit is contained in:
parent
9dcb1d7da0
commit
6b36d4e421
1 changed files with 42 additions and 61 deletions
103
.github/workflows/release.yaml
vendored
103
.github/workflows/release.yaml
vendored
|
|
@ -19,65 +19,41 @@ concurrency:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
package-linux:
|
package-linux:
|
||||||
name: ${{ matrix.vscode_target }}
|
name: ${{ format('linux-{0}', matrix.vscode_arch) }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
container: "python:3.8-slim-buster"
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- prefix: x86_64-linux-gnu
|
- npm_arch: x64
|
||||||
npm_arch: x64
|
vscode_arch: x64
|
||||||
apt_arch: amd64
|
|
||||||
package_arch: amd64
|
package_arch: amd64
|
||||||
vscode_target: linux-x64
|
- npm_arch: arm64
|
||||||
- prefix: aarch64-linux-gnu
|
vscode_arch: arm64
|
||||||
npm_arch: arm64
|
|
||||||
apt_arch: arm64
|
|
||||||
package_arch: arm64
|
package_arch: arm64
|
||||||
vscode_target: linux-arm64
|
- npm_arch: arm
|
||||||
- prefix: arm-linux-gnueabihf
|
vscode_arch: armhf
|
||||||
npm_arch: armv7l
|
|
||||||
apt_arch: armhf
|
|
||||||
package_arch: armv7l
|
package_arch: armv7l
|
||||||
vscode_target: linux-armhf
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
AR: ${{ format('{0}-ar', matrix.prefix) }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
AS: ${{ format('{0}-as', matrix.prefix) }}
|
ELECTRON_SKIP_BINARY_DOWNLOAD: 1
|
||||||
CC: ${{ format('{0}-gcc', matrix.prefix) }}
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
|
||||||
CPP: ${{ format('{0}-cpp', matrix.prefix) }}
|
|
||||||
CXX: ${{ format('{0}-g++', matrix.prefix) }}
|
|
||||||
FC: ${{ format('{0}-gfortran', matrix.prefix) }}
|
|
||||||
LD: ${{ format('{0}-ld', matrix.prefix) }}
|
|
||||||
STRIP: ${{ format('{0}-strip', matrix.prefix) }}
|
|
||||||
PKG_CONFIG_PATH: ${{ format('/usr/lib/{0}/pkgconfig', matrix.prefix) }}
|
|
||||||
# Set cross-compiler package arch.
|
|
||||||
APT_ARCH: ${{ matrix.apt_arch }}
|
|
||||||
# For downloading the right Node.
|
|
||||||
npm_config_arch: ${{ matrix.npm_arch }}
|
|
||||||
# Overrides package architecture.
|
|
||||||
ARCH: ${{ matrix.package_arch }}
|
|
||||||
# Not building from source results in an x86_64 argon2, as if
|
|
||||||
# npm_config_arch is being ignored.
|
|
||||||
npm_config_build_from_source: true
|
|
||||||
# Overrides VS Code gulp build target.
|
|
||||||
VSCODE_TARGET: ${{ matrix.vscode_target }}
|
|
||||||
TAG: ${{ inputs.version || github.ref_name }}
|
TAG: ${{ inputs.version || github.ref_name }}
|
||||||
|
# Set release package name.
|
||||||
|
ARCH: ${{ matrix.package_arch }}
|
||||||
|
# Cross-compile target.
|
||||||
|
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
||||||
|
npm_config_arch: ${{ matrix.npm_arch }}
|
||||||
|
# Gulp target name.
|
||||||
|
VSCODE_TARGET: ${{ format('linux-{0}', matrix.vscode_arch) }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Install cross-compiler and system dependencies
|
- run: sudo apt update && sudo apt install -y libkrb5-dev
|
||||||
run: |
|
- uses: awalsh128/cache-apt-pkgs-action@2c09a5e66da6c8016428a2172bd76e5e4f14bb17 # latest
|
||||||
sed -i 's/deb\.debian\.org/archive.debian.org/g' /etc/apt/sources.list
|
with:
|
||||||
dpkg --add-architecture $APT_ARCH
|
packages: quilt
|
||||||
apt update && apt install -y --no-install-recommends \
|
version: 1.0
|
||||||
crossbuild-essential-$APT_ARCH \
|
|
||||||
libx11-dev:$APT_ARCH \
|
|
||||||
libx11-xcb-dev:$APT_ARCH \
|
|
||||||
libxkbfile-dev:$APT_ARCH \
|
|
||||||
libsecret-1-dev:$APT_ARCH \
|
|
||||||
libkrb5-dev:$APT_ARCH \
|
|
||||||
ca-certificates \
|
|
||||||
curl wget rsync gettext-base quilt git
|
|
||||||
- name: Install nfpm
|
- name: Install nfpm
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ~/.local/bin
|
mkdir -p ~/.local/bin
|
||||||
|
|
@ -99,17 +75,28 @@ jobs:
|
||||||
cache-dependency-path: |
|
cache-dependency-path: |
|
||||||
package-lock.json
|
package-lock.json
|
||||||
test/package-lock.json
|
test/package-lock.json
|
||||||
- run: npm ci
|
|
||||||
- run: npm run build
|
- name: Build
|
||||||
- run: npm run build:vscode
|
run: |
|
||||||
|
cd lib/vscode/build
|
||||||
|
npm ci
|
||||||
|
cd ..
|
||||||
|
source ./build/azure-pipelines/linux/setup-env.sh
|
||||||
|
# Run preinstall script before root dependencies are installed
|
||||||
|
# so that v8 headers are patched correctly for native modules.
|
||||||
|
node build/npm/preinstall.ts
|
||||||
|
cd ../..
|
||||||
|
npm ci
|
||||||
|
npm run build
|
||||||
|
npm run build:vscode
|
||||||
|
|
||||||
# Platform-agnostic NPM package.
|
# Platform-agnostic NPM package.
|
||||||
- run: npm run release
|
- run: npm run release
|
||||||
if: ${{ matrix.vscode_target == 'linux-x64' }}
|
if: ${{ matrix.vscode_arch == 'x64' }}
|
||||||
- run: tar -czf package.tar.gz release
|
- run: tar -czf package.tar.gz release
|
||||||
if: ${{ matrix.vscode_target == 'linux-x64' }}
|
if: ${{ matrix.vscode_arch == 'x64' }}
|
||||||
- uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
|
- uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
|
||||||
if: ${{ matrix.vscode_target == 'linux-x64' }}
|
if: ${{ matrix.vscode_arch == 'x64' }}
|
||||||
with:
|
with:
|
||||||
draft: true
|
draft: true
|
||||||
discussion_category_name: "📣 Announcements"
|
discussion_category_name: "📣 Announcements"
|
||||||
|
|
@ -117,13 +104,6 @@ jobs:
|
||||||
|
|
||||||
# Platform-specific release.
|
# Platform-specific release.
|
||||||
- run: KEEP_MODULES=1 npm run release
|
- run: KEEP_MODULES=1 npm run release
|
||||||
- name: Replace node with cross-compile equivalent
|
|
||||||
run: |
|
|
||||||
node_version=$(node --version)
|
|
||||||
wget https://nodejs.org/dist/${node_version}/node-${node_version}-linux-${npm_config_arch}.tar.xz
|
|
||||||
tar -xf node-${node_version}-linux-${npm_config_arch}.tar.xz node-${node_version}-linux-${npm_config_arch}/bin/node --strip-components=2
|
|
||||||
mv ./node ./release/lib/node
|
|
||||||
|
|
||||||
- run: npm run package
|
- run: npm run package
|
||||||
- uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
|
- uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
|
||||||
with:
|
with:
|
||||||
|
|
@ -173,6 +153,7 @@ jobs:
|
||||||
cache-dependency-path: |
|
cache-dependency-path: |
|
||||||
package-lock.json
|
package-lock.json
|
||||||
test/package-lock.json
|
test/package-lock.json
|
||||||
|
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
- run: npm run build:vscode
|
- run: npm run build:vscode
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue