mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-24 11:50:14 +10:00
ci(linux): add flag to disable appimage [skip ci]
This commit is contained in:
3
.github/workflows/insider-macos.yml
vendored
3
.github/workflows/insider-macos.yml
vendored
@@ -42,7 +42,8 @@ jobs:
|
|||||||
include:
|
include:
|
||||||
- runner: macos-12
|
- runner: macos-12
|
||||||
vscode_arch: x64
|
vscode_arch: x64
|
||||||
- runner: macos-14
|
# - runner: macos-14
|
||||||
|
- runner: [self-hosted, macOS, ARM64]
|
||||||
vscode_arch: arm64
|
vscode_arch: arm64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
3
.github/workflows/stable-linux.yml
vendored
3
.github/workflows/stable-linux.yml
vendored
@@ -179,8 +179,9 @@ jobs:
|
|||||||
|
|
||||||
- name: Check existing VSCodium tags/releases
|
- name: Check existing VSCodium tags/releases
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
CHECK_REH: 'no'
|
CHECK_REH: 'no'
|
||||||
|
DISABLE_APPIMAGE: ${{ vars.DISABLE_APPIMAGE }}
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: ./check_tags.sh
|
run: ./check_tags.sh
|
||||||
if: env.SHOULD_BUILD == 'yes'
|
if: env.SHOULD_BUILD == 'yes'
|
||||||
|
|
||||||
|
|||||||
@@ -381,7 +381,9 @@ elif [[ "${ASSETS}" != "null" ]]; then
|
|||||||
export SHOULD_BUILD_TAR="no"
|
export SHOULD_BUILD_TAR="no"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z $( contains "x86_64.AppImage" ) ]]; then
|
if [[ "${DISABLE_APPIMAGE}" == "yes" ]]; then
|
||||||
|
export SHOULD_BUILD_APPIMAGE="no"
|
||||||
|
elif [[ -z $( contains "x86_64.AppImage" ) ]]; then
|
||||||
echo "Building on Linux x64 because we have no AppImage"
|
echo "Building on Linux x64 because we have no AppImage"
|
||||||
export SHOULD_BUILD="yes"
|
export SHOULD_BUILD="yes"
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user