Skip to content

Commit 44d1d48

Browse files
committed
Try null instead of default
1 parent f4f47ba commit 44d1d48

File tree

1 file changed

+4
-17
lines changed

1 file changed

+4
-17
lines changed

.github/workflows/system.yml

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- macos-15-intel
1919
- macos-latest
2020
- windows-latest
21-
architecture: [default]
21+
architecture: [null]
2222
python-version: ['3.x']
2323
julia-version:
2424
- '1'
@@ -31,15 +31,15 @@ jobs:
3131
julia-version: '1'
3232
# Sweep python-version and julia-version only on Ubuntu:
3333
- os: ubuntu-latest
34-
architecture: default
34+
architecture: null
3535
python-version: '3.10'
3636
julia-version: '1'
3737
- os: ubuntu-latest
38-
architecture: default
38+
architecture: null
3939
python-version: '3.x'
4040
julia-version: '1.5'
4141
- os: ubuntu-latest
42-
architecture: default
42+
architecture: null
4343
python-version: '3.x'
4444
julia-version: '1.4'
4545
fail-fast: false
@@ -50,12 +50,6 @@ jobs:
5050
steps:
5151
- uses: actions/checkout@v1
5252
- name: Setup python
53-
if: matrix.architecture == 'default'
54-
uses: actions/setup-python@v6
55-
with:
56-
python-version: ${{ matrix.python-version }}
57-
- name: Setup python
58-
if: matrix.architecture != 'default'
5953
uses: actions/setup-python@v6
6054
with:
6155
python-version: ${{ matrix.python-version }}
@@ -66,13 +60,6 @@ jobs:
6660
run: python -m pip install virtualenv
6761
- run: virtualenv --version
6862
- name: Setup julia
69-
if: matrix.architecture == 'default'
70-
uses: julia-actions/setup-julia@v1
71-
with:
72-
version: ${{ matrix.julia-version }}
73-
show-versioninfo: true
74-
- name: Setup julia
75-
if: matrix.architecture != 'default'
7663
uses: julia-actions/setup-julia@v1
7764
with:
7865
version: ${{ matrix.julia-version }}

0 commit comments

Comments
 (0)