mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-12-23 17:04:12 +03:00
fix: remote dependencies (#1324)
This commit is contained in:
parent
51e8c96447
commit
59389da1b0
3
.github/workflows/insider-linux.yml
vendored
3
.github/workflows/insider-linux.yml
vendored
@ -108,7 +108,7 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: remote-dependencies-${{ matrix.vscode_arch }}
|
name: remote-dependencies-${{ matrix.vscode_arch }}
|
||||||
path: ./vscode/remote/node_modules
|
path: ./remote-dependencies.tar
|
||||||
retention-days: ${{ needs.check.outputs.SHOULD_DEPLOY == 'yes' && 30 || 1 }}
|
retention-days: ${{ needs.check.outputs.SHOULD_DEPLOY == 'yes' && 30 || 1 }}
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@ -175,7 +175,6 @@ jobs:
|
|||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: remote-dependencies-${{ matrix.vscode_arch }}
|
name: remote-dependencies-${{ matrix.vscode_arch }}
|
||||||
path: ./vscode/remote/node_modules
|
|
||||||
if: env.SHOULD_BUILD == 'yes' && matrix.vscode_arch == 'x64'
|
if: env.SHOULD_BUILD == 'yes' && matrix.vscode_arch == 'x64'
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
|
3
.github/workflows/stable-linux.yml
vendored
3
.github/workflows/stable-linux.yml
vendored
@ -102,7 +102,7 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: remote-dependencies-${{ matrix.vscode_arch }}
|
name: remote-dependencies-${{ matrix.vscode_arch }}
|
||||||
path: ./vscode/remote/node_modules
|
path: ./remote-dependencies.tar
|
||||||
retention-days: ${{ needs.check.outputs.SHOULD_DEPLOY == 'yes' && 30 || 1 }}
|
retention-days: ${{ needs.check.outputs.SHOULD_DEPLOY == 'yes' && 30 || 1 }}
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@ -167,7 +167,6 @@ jobs:
|
|||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: remote-dependencies-${{ matrix.vscode_arch }}
|
name: remote-dependencies-${{ matrix.vscode_arch }}
|
||||||
path: ./vscode/remote/node_modules
|
|
||||||
if: env.SHOULD_BUILD == 'yes' && matrix.vscode_arch == 'x64'
|
if: env.SHOULD_BUILD == 'yes' && matrix.vscode_arch == 'x64'
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -13,3 +13,4 @@ build/linux/appimage/VSCodium
|
|||||||
build/windows/msi/releasedir
|
build/windows/msi/releasedir
|
||||||
build/windows/msi/Files*.wxs
|
build/windows/msi/Files*.wxs
|
||||||
build/windows/msi/Files*.wixobj
|
build/windows/msi/Files*.wixobj
|
||||||
|
remote-dependencies.tar
|
||||||
|
4
build.sh
4
build.sh
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
|
if [ -f "./remote-dependencies.tar" ]; then
|
||||||
|
tar -xf ./remote-dependencies.tar ./vscode/remote/node_modules
|
||||||
|
fi
|
||||||
|
|
||||||
. version.sh
|
. version.sh
|
||||||
|
|
||||||
if [[ "${SHOULD_BUILD}" == "yes" ]]; then
|
if [[ "${SHOULD_BUILD}" == "yes" ]]; then
|
||||||
|
@ -7,3 +7,5 @@ cd vscode || { echo "'vscode' dir not found"; exit 1; }
|
|||||||
yarn --cwd remote --frozen-lockfile --check-files
|
yarn --cwd remote --frozen-lockfile --check-files
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
tar -cf remote-dependencies.tar ./vscode/remote/node_modules
|
||||||
|
Loading…
Reference in New Issue
Block a user