-
Notifications
You must be signed in to change notification settings - Fork 948
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Homebrew doesn't let us downgrade, we have to use an alternative client (for now)
- Loading branch information
1 parent
9ae12ba
commit 4c95e91
Showing
2 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -503,20 +503,25 @@ Ubuntu_GCC_integration_tests_asan: | |
- ccache/ | ||
script: | ||
- CI/before_install.osx.sh | ||
- brew install [email protected] | ||
- export CCACHE_BASEDIR="$(pwd)" | ||
- export CCACHE_DIR="$(pwd)/ccache" | ||
- mkdir -pv "${CCACHE_DIR}" | ||
- ccache -z -M "${CCACHE_SIZE}" | ||
- 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 | ||
- aws --version | ||
- | | ||
if [[ -n "${AWS_ACCESS_KEY_ID}" ]]; then | ||
echo "[default]" > ~/.s3cfg | ||
echo "access_key = ${AWS_ACCESS_KEY_ID}" >> ~/.s3cfg | ||
echo "secret_key = ${AWS_SECRET_ACCESS_KEY}" >> ~/.s3cfg | ||
echo "host_base = rgw.ctrl-c.liu.se" >> ~/.s3cfg | ||
echo "host_bucket = %(bucket)s.rgw.ctrl-c.liu.se" >> ~/.s3cfg | ||
echo "use_https = True" >> ~/.s3cfg | ||
artifactDirectory="${CI_PROJECT_NAMESPACE//[\"<>|$'\t'\/\\?*]/_}/${CI_COMMIT_REF_NAME//[\"<>|$'\t'\/\\?*]/_}/${CI_COMMIT_SHORT_SHA//[\"<>|$'\t'\/\\?*]/_}-${CI_JOB_ID//[\"<>|$'\t'\/\\?*]/_}/" | ||
for dmg in *.dmg; do | ||
aws --endpoint-url https://rgw.ctrl-c.liu.se s3 cp "${dmg}" s3://openmw-artifacts/${artifactDirectory} | ||
s3cmd put "${dmg}" s3://openmw-artifacts/${artifactDirectory} | ||
done | ||
fi | ||
- ccache -s | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters