Skip to content

Commit

Permalink
Always upload macos-M1 artifacts to snapshots dir (#4259)
Browse files Browse the repository at this point in the history
* Always upload m1 artifacts to snapshots dir (WIP)

* fix cron condition (temp)

* fix cron condition (temp) 2

* remove temp, build on integ branches for M1 (temp)
  • Loading branch information
alonre24 committed Dec 25, 2023
1 parent 4afec60 commit 44bd47e
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .circleci/config.yml
Expand Up @@ -549,8 +549,8 @@ jobs:
- run:
name: Upload artifacts to S3
command: |
if [[ -n $CIRCLE_BRANCH && "<<parameters.upload>>" == "yes" ]]; then
make upload-artifacts SHOW=1 STAGING=1
if [[ "<<parameters.upload>>" == "yes" ]]; then
make upload-artifacts SHOW=1
fi
- persist-artifacts

Expand Down Expand Up @@ -1001,10 +1001,10 @@ on-integ-and-version-tags: &on-integ-and-version-tags

workflows:
version: 2
# default-flow:
# when:
# << pipeline.parameters.run_default_flow >>
# jobs:
default-flow:
when:
<< pipeline.parameters.run_default_flow >>
jobs:
# - build-linux-debian:
# <<: *not-on-integ-branch
# - build-linux-arm-ubuntu:
Expand All @@ -1029,14 +1029,14 @@ workflows:
# - build-macos-x64-coordinator:
# <<: *on-version-tags
# context: common
# - build-macos-m1-search:
# context: common
# <<: *on-version-tags
# # Avoid persist conflict with build-macos-m1-coordinator
# upload: "no"
# - build-macos-m1-coordinator:
# context: common
# <<: *on-version-tags
- build-macos-m1-search:
context: common
<<: *on-integ-branch
# Avoid persist conflict with build-macos-m1-coordinator
upload: "no"
- build-macos-m1-coordinator:
context: common
<<: *on-integ-branch
# - coverage:
# <<: *always
# - sanitize:
Expand Down

0 comments on commit 44bd47e

Please sign in to comment.