Skip to content

Commit

Permalink
Spinnaker: Use only file ID when downloading with gdown
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsacha committed Aug 3, 2024
1 parent df452f2 commit ae05c72
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/actions/deploy-ubuntu/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@ runs:
if [[ "$CI_DEPLOY_PLATFORM" == "linux-x86_64" ]] && [[ "$CI_DEPLOY_MODULE" == "spinnaker" ]]; then
echo Installing Spinnaker amd64
python3 -m gdown https://drive.google.com/file/d/1Xapzvxrgx1w3RCbAOFILaNCZwpusB_VA
python3 -m gdown -V
python3 -m gdown 1Xapzvxrgx1w3RCbAOFILaNCZwpusB_VA
tar -xzvf spinnaker-4.0.0.116-amd64-pkg-22.04.tar.gz
find -name *.deb | while read f; do ar -xv $f; $SUDO tar --totals -xvf data.tar.xz -C /; done;
fi
Expand Down
5 changes: 3 additions & 2 deletions .github/actions/deploy-windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,9 @@ runs:
if "%CI_DEPLOY_PLATFORM%"=="windows-x86_64" if "%CI_DEPLOY_MODULE%"=="spinnaker" (
echo Installing Spinnaker x64
python -m gdown https://drive.google.com/file/d/1d0HHDHsPcgs-Pnw0u8KeeFlK79T1DQhf
python -m gdown https://drive.google.com/file/d/18cWXUhL6aFs57Q73aVWT1BF_--pzoMha
python -m gdown -V
python -m gdown 1d0HHDHsPcgs-Pnw0u8KeeFlK79T1DQhf
python -m gdown 18cWXUhL6aFs57Q73aVWT1BF_--pzoMha
rem We can get these msi files by starting the installation from the exe file
cmd.exe /c "msiexec /quiet /i Spinnaker_4.0.0.116_Binaries_v140_x64.msi ADDLOCAL=ALL"
cmd.exe /c "msiexec /quiet /i Spinnaker_4.0.0.116_SourceCode_v140_x64.msi ADDLOCAL=ALL"
Expand Down

0 comments on commit ae05c72

Please sign in to comment.