Skip to content

Commit 561508d

Browse files
CI: Increase the CI timeout. Update actions. Fix double precompilation. (#3665)
Co-authored-by: Ian Butterworth <[email protected]>
1 parent 7c7ed63 commit 561508d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020
jobs:
2121
test:
2222
runs-on: ${{ matrix.os }}
23-
timeout-minutes: 60
23+
timeout-minutes: 70
2424
strategy:
2525
fail-fast: false
2626
matrix:
@@ -46,8 +46,8 @@ jobs:
4646
run: |
4747
git config --global core.autocrlf false
4848
git config --global core.eol lf
49-
- uses: actions/checkout@v3
50-
- uses: julia-actions/setup-julia@latest
49+
- uses: actions/checkout@v4
50+
- uses: julia-actions/setup-julia@v1
5151
with:
5252
version: ${{ matrix.julia-version }}
5353
arch: ${{ matrix.julia-arch }}
@@ -57,7 +57,7 @@ jobs:
5757
# See https://github.com/actions/virtual-environments/issues/712
5858
echo "TMP=${USERPROFILE}\AppData\Local\Temp" >> ${GITHUB_ENV}
5959
echo "TEMP=${USERPROFILE}\AppData\Local\Temp" >> ${GITHUB_ENV}
60-
- run: julia --project --color=yes --check-bounds=yes -e 'import Pkg; Pkg.build(); Pkg.test(; coverage=true)'
60+
- run: julia --project --color=yes --pkgimages=no --check-bounds=yes -e 'import Pkg; Pkg.build(); Pkg.test(; coverage=true)'
6161
env:
6262
JULIA_PKG_SERVER: ${{ matrix.pkg-server }}
6363
JULIA_PKG_TEST_QUIET: "true" # "true" is the default. i.e. tests are quiet when this env var isn't set
@@ -71,8 +71,8 @@ jobs:
7171
runs-on: ubuntu-latest
7272
timeout-minutes: 60
7373
steps:
74-
- uses: actions/checkout@v1.0.0
75-
- uses: julia-actions/setup-julia@latest
74+
- uses: actions/checkout@v4
75+
- uses: julia-actions/setup-julia@v1
7676
with:
7777
# version: '1.6'
7878
version: 'nightly'

0 commit comments

Comments
 (0)