Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.github/workflows/ci-sage.yml: Add macOS #9

Merged
merged 2 commits into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/ci-sage.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Run Sage CI for Linux
name: Run Sage CI for Linux and macOS

## This GitHub Actions workflow provides:
##
## - portability testing, by building and testing this project on many platforms
## (Linux variants)
## (Linux variants, macOS)
##
## - continuous integration, by building and testing other software
## that depends on this project.
Expand Down Expand Up @@ -98,3 +98,13 @@ jobs:
# 'Package "sage-docker-..." is already associated with another repository.'
docker_push_repository: ghcr.io/${{ github.repository }}/scip_sdp_
needs: [dist]

macos:
# Use https://github.com/sagemath/sage/pull/37237
uses: mkoeppe/sage/.github/workflows/macos.yml@ci-macos-2024
with:
targets: SAGE_CHECK=no SAGE_CHECK_PACKAGES="soplex,scipoptsuite,dsdp,scip_sdp" scip_sdp
Copy link
Contributor Author

@mkoeppe mkoeppe Feb 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@pfetsch This is ready for merging if you'd like to add macOS testing to your project.

I'll send a PR later to replace these temporary refs by permanent ones.

sage_repo: sagemath/sage
sage_ref: refs/pull/37237/head
upstream_artifact: upstream
needs: [dist]
Loading