Skip to content

Commit 33f10bc

Browse files
authored
Attempt to use default arch in actions to avoid complaints (#218)
* Attempt to use default `arch` in actions to avoid complaints * swap deprecated `file` for `files` in codecov action
1 parent 8f0a0c0 commit 33f10bc

File tree

3 files changed

+1
-17
lines changed

3 files changed

+1
-17
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,11 @@ jobs:
2727
- ubuntu-latest
2828
- macOS-latest
2929
- windows-latest
30-
arch:
31-
- x64
32-
# - x86
33-
# exclude:
34-
# - os: macOS-latest
35-
# arch: x86
3630
steps:
3731
- uses: actions/checkout@v4
3832
- uses: julia-actions/setup-julia@v2
3933
with:
4034
version: ${{ matrix.version }}
41-
arch: ${{ matrix.arch }}
4235
- uses: julia-actions/cache@v2
4336
- uses: julia-actions/julia-buildpkg@latest
4437
- uses: julia-actions/julia-runtest@latest
@@ -49,7 +42,7 @@ jobs:
4942
env:
5043
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5144
with:
52-
file: lcov.info
45+
files: lcov.info
5346
test-nightly:
5447
needs: test
5548
name: Julia nightly - ${{ matrix.os }} - ${{ matrix.arch }}
@@ -62,15 +55,12 @@ jobs:
6255
- ubuntu-latest
6356
- macOS-latest
6457
- windows-latest
65-
arch:
66-
- x64
6758
continue-on-error: true
6859
steps:
6960
- uses: actions/checkout@v4
7061
- uses: julia-actions/setup-julia@v2
7162
with:
7263
version: ${{ matrix.version }}
73-
arch: ${{ matrix.arch }}
7464
- uses: julia-actions/cache@v2
7565
- uses: julia-actions/julia-buildpkg@latest
7666
- uses: julia-actions/julia-runtest@latest

.github/workflows/Documentation.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,11 @@ jobs:
1919
- '1' # automatically expands to the latest stable 1.x release of Julia
2020
os:
2121
- ubuntu-latest
22-
arch:
23-
- x64
2422
steps:
2523
- uses: actions/checkout@v4
2624
- uses: julia-actions/setup-julia@latest
2725
with:
2826
version: ${{ matrix.version }}
29-
arch: ${{ matrix.arch }}
3027
- name: Install dependencies
3128
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
3229
- name: Build and deploy

.github/workflows/FormatCheck.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,10 @@ jobs:
1818
- '1' # automatically expands to the latest stable 1.x release of Julia
1919
os:
2020
- ubuntu-latest
21-
arch:
22-
- x64
2321
steps:
2422
- uses: julia-actions/setup-julia@latest
2523
with:
2624
version: ${{ matrix.version }}
27-
arch: ${{ matrix.arch }}
2825

2926
- uses: actions/checkout@v4
3027
- name: Install JuliaFormatter and format

0 commit comments

Comments
 (0)