Skip to content

Commit

Permalink
MacOS cirrus-ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Oct 23, 2023
1 parent 74d0529 commit 1bcefe4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .cirrus.star
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def main():
instances = {
"darwin_arm64": {
"macos_instance": {
"image": "ghcr.io/cirruslabs/macos-monterey-xcode"
"image": "ghcr.io/cirruslabs/macos-monterey-xcode:latest"
}
},
"linux_aarch64": {
Expand All @@ -59,6 +59,9 @@ def main():
"install_script": "DEBIAN_FRONTEND=noninteractive apt-get -y update && " +
"DEBIAN_FRONTEND=noninteractive apt-get -y install wget unzip git default-jre"
}
macos_install = {
"install_script": "brew update"
}
tasks = [ ]

for host in [ "darwin_arm64", "linux_aarch64" ]:
Expand All @@ -80,6 +83,8 @@ def main():

if host == "linux_aarch64":
flow.update(linux_install)
else:
flow.update(macos_install)

flow2 = {
"load_mentanorma_script": "wget -nv " + m_remote + " && unzip " + m_zip,
Expand Down

0 comments on commit 1bcefe4

Please sign in to comment.