Skip to content

Commit

Permalink
Improve CI runner (#69)
Browse files Browse the repository at this point in the history
* Improve CI runner

* Add architecture back in

* Test on a range of OSs
  • Loading branch information
willtebbutt authored Feb 6, 2024
1 parent 567b070 commit 3d496be
Showing 1 changed file with 2 additions and 32 deletions.
34 changes: 2 additions & 32 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,12 @@ jobs:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
- x86
exclude:
# Test 32-bit only on Linux
- os: macOS-latest
arch: x86
- os: windows-latest
arch: x86
include:
# Add a 1.5 job because that's what Invenia actually uses
- os: ubuntu-latest
version: 1.5
arch: x64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
arch: x64
- uses: actions/cache@v2
env:
cache-name: cache-artifacts
Expand All @@ -58,22 +44,6 @@ jobs:
with:
file: lcov.info

slack:
name: Notify Slack Failure
needs: test
runs-on: ubuntu-latest
if: always() && github.event_name == 'schedule'
steps:
- uses: technote-space/workflow-conclusion-action@v2
- uses: voxmedia/github-action-slack-notify-build@v1
if: env.WORKFLOW_CONCLUSION == 'failure'
with:
channel: nightly-rse
status: FAILED
color: danger
env:
SLACK_BOT_TOKEN: ${{ secrets.RSE_SLACK_BOT_TOKEN }}

docs:
name: Documentation
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3d496be

Please sign in to comment.