-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* ci: Upgrade to m1 macs * ci: Bump xcode version accordingly * fix: try with lower xcode * fix(ci): Install rosetta in m1 machines * fix(ci): Missing mac orb
- Loading branch information
Showing
1 changed file
with
7 additions
and
3 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 |
---|---|---|
|
@@ -7,7 +7,7 @@ orbs: | |
wait-for: cobli/[email protected] | ||
discord: antonioned/[email protected] | ||
docker: circleci/[email protected] | ||
|
||
macos: circleci/[email protected] | ||
# The main workflows for our monorepo pipeline. | ||
|
||
workflows: | ||
|
@@ -274,7 +274,8 @@ jobs: # Each project will have individual jobs for each specific task it has to | |
|
||
build-connector-mac: | ||
macos: | ||
xcode: 12.5.1 | ||
xcode: 13.4.1 | ||
resource_class: macos.m1.medium.gen1 | ||
parameters: | ||
slnname: | ||
type: string | ||
|
@@ -303,6 +304,7 @@ jobs: # Each project will have individual jobs for each specific task it has to | |
type: string | ||
default: "" | ||
steps: | ||
- macos/install-rosetta | ||
- cached-checkout | ||
- attach_workspace: | ||
at: ./ | ||
|
@@ -581,7 +583,8 @@ jobs: # Each project will have individual jobs for each specific task it has to | |
|
||
build-archicad-add-on-mac: # build Archicad C++ add-on | ||
macos: | ||
xcode: 12.5.1 | ||
xcode: 13.4.1 | ||
resource_class: macos.m1.medium.gen1 | ||
parameters: | ||
archicadversion: | ||
type: string | ||
|
@@ -593,6 +596,7 @@ jobs: # Each project will have individual jobs for each specific task it has to | |
type: string | ||
default: "" | ||
steps: | ||
- macos/install-rosetta | ||
- cached-checkout | ||
- attach_workspace: | ||
at: ./ | ||
|