Skip to content

Commit

Permalink
Move s3cmd installation to before_install, fix extra slash in destina…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
Capostrophic committed Jan 30, 2025
1 parent c99d022 commit fd17d07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,6 @@ Ubuntu_GCC_integration_tests_asan:
- CI/before_script.osx.sh
- cd build; make -j $(sysctl -n hw.logicalcpu) package
- for dmg in *.dmg; do mv "$dmg" "${dmg%.dmg}_${CI_COMMIT_REF_NAME##*/}.dmg"; done
- brew install s3cmd
- |
if [[ -n "${AWS_ACCESS_KEY_ID}" ]]; then
echo "[default]" > ~/.s3cfg
Expand All @@ -522,7 +521,7 @@ Ubuntu_GCC_integration_tests_asan:
artifactDirectory="${CI_PROJECT_NAMESPACE//[\"<>|$'\t'\/\\?*]/_}/${CI_COMMIT_REF_NAME//[\"<>|$'\t'\/\\?*]/_}/${CI_COMMIT_SHORT_SHA//[\"<>|$'\t'\/\\?*]/_}-${CI_JOB_ID//[\"<>|$'\t'\/\\?*]/_}/"
for dmg in *.dmg; do
s3cmd put "${dmg}" s3://openmw-artifacts/${artifactDirectory}/
s3cmd put "${dmg}" s3://openmw-artifacts/${artifactDirectory}
done
fi
- ccache -s
Expand Down
2 changes: 1 addition & 1 deletion CI/before_install.osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export HOMEBREW_AUTOREMOVE=1
brew tap --repair
brew update --quiet

brew install curl xquartz gd fontconfig freetype harfbuzz brotli
brew install curl xquartz gd fontconfig freetype harfbuzz brotli s3cmd

command -v ccache >/dev/null 2>&1 || brew install ccache
command -v cmake >/dev/null 2>&1 || brew install cmake
Expand Down

0 comments on commit fd17d07

Please sign in to comment.