diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-09-21 17:02:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 17:02:06 -0400 |
commit | 79816798c2b98e42f0a5590c250c0fb3b2bf2521 (patch) | |
tree | ca48a18b2a8c52b3a5b3265857638729b2dd45cc /.cirrus.yml | |
parent | cd7b48198c38c5028540e85dc72dd3406f4318f0 (diff) | |
parent | 319fcf52fc5eaa3a83c4a152405910a5b516f89a (diff) | |
download | podman-79816798c2b98e42f0a5590c250c0fb3b2bf2521.tar.gz podman-79816798c2b98e42f0a5590c250c0fb3b2bf2521.tar.bz2 podman-79816798c2b98e42f0a5590c250c0fb3b2bf2521.zip |
Merge pull request #11579 from cevich/add_cross_release
Cross-build linux releases w/ arch in filename
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 581aaaa7b..968854771 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -359,11 +359,15 @@ osx_alt_build_task: TEST_FLAVOR: "altbuild" ALT_NAME: 'OSX Cross' osx_instance: - image: 'catalina-base' - script: + image: 'big-sur-base' + setup_script: - brew install go - brew install go-md2man - - make podman-remote-release-darwin.zip + - go version + build_amd64_script: + - make podman-remote-release-darwin_amd64.zip + build_arm64_script: + - make podman-remote-release-darwin_arm64.zip GOARCH=arm64 always: *binary_artifacts |