Skip to content

Commit

Permalink
Enforce macOS checks must pass on CI to deploy a snapshot. (#2681)
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite authored Nov 14, 2024
1 parent beebb0a commit 0ade381
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
runs-on: macos-latest
timeout-minutes: 60
if: github.repository == 'coil-kt/coil' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/2.x')
needs: [checks, unit-tests, instrumentation-tests, build-samples]
needs: [checks, unit-tests, unit-tests-macos, instrumentation-tests, build-samples, build-samples-macos]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand All @@ -183,7 +183,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 60
if: github.repository == 'coil-kt/coil' && github.ref == 'refs/heads/main'
needs: [checks, unit-tests, instrumentation-tests, build-samples]
needs: [checks, unit-tests, unit-tests-macos, instrumentation-tests, build-samples, build-samples-macos]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand Down

0 comments on commit 0ade381

Please sign in to comment.