Skip to content

Commit 3d496be

Browse files
authored
Improve CI runner (#69)
* Improve CI runner * Add architecture back in * Test on a range of OSs
1 parent 567b070 commit 3d496be

File tree

1 file changed

+2
-32
lines changed

1 file changed

+2
-32
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,12 @@ jobs:
2020
- ubuntu-latest
2121
- macOS-latest
2222
- windows-latest
23-
arch:
24-
- x64
25-
- x86
26-
exclude:
27-
# Test 32-bit only on Linux
28-
- os: macOS-latest
29-
arch: x86
30-
- os: windows-latest
31-
arch: x86
32-
include:
33-
# Add a 1.5 job because that's what Invenia actually uses
34-
- os: ubuntu-latest
35-
version: 1.5
36-
arch: x64
3723
steps:
38-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
3925
- uses: julia-actions/setup-julia@v1
4026
with:
4127
version: ${{ matrix.version }}
42-
arch: ${{ matrix.arch }}
28+
arch: x64
4329
- uses: actions/cache@v2
4430
env:
4531
cache-name: cache-artifacts
@@ -58,22 +44,6 @@ jobs:
5844
with:
5945
file: lcov.info
6046

61-
slack:
62-
name: Notify Slack Failure
63-
needs: test
64-
runs-on: ubuntu-latest
65-
if: always() && github.event_name == 'schedule'
66-
steps:
67-
- uses: technote-space/workflow-conclusion-action@v2
68-
- uses: voxmedia/github-action-slack-notify-build@v1
69-
if: env.WORKFLOW_CONCLUSION == 'failure'
70-
with:
71-
channel: nightly-rse
72-
status: FAILED
73-
color: danger
74-
env:
75-
SLACK_BOT_TOKEN: ${{ secrets.RSE_SLACK_BOT_TOKEN }}
76-
7747
docs:
7848
name: Documentation
7949
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)