Skip to content

Commit 0cf9eb8

Browse files
committed
Checkout 1fd46e6251b7e8fd60559ed513144efdbb69cb7c
1 parent 1aae940 commit 0cf9eb8

File tree

1 file changed

+12
-48
lines changed

1 file changed

+12
-48
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -14,65 +14,29 @@ jobs:
1414
test:
1515
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1616
runs-on: ${{ matrix.os }}
17-
timeout-minutes: 30
17+
timeout-minutes: 60
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
version:
22-
- '1.6'
23-
- '1'
24-
- '^1.7.0-0'
25-
# - 'nightly'
2621
os:
2722
- ubuntu-latest
28-
arch:
29-
- x64
3023
steps:
3124
- uses: actions/checkout@v2
32-
- uses: julia-actions/setup-julia@v1
33-
with:
34-
version: ${{ matrix.version }}
35-
arch: ${{ matrix.arch }}
36-
- uses: actions/cache@v1
37-
env:
38-
cache-name: cache-artifacts
39-
with:
40-
path: ~/.julia/artifacts
41-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
42-
restore-keys: |
43-
${{ runner.os }}-test-${{ env.cache-name }}-
44-
${{ runner.os }}-test-
45-
${{ runner.os }}-
4625
- run: git config --global user.name "Dilum Aluthge"
4726
- run: git config --global user.email "[email protected]"
27+
- run: rm -rf /tmp/julia
28+
- run: mkdir -p /tmp
29+
- run: cd /tmp && git clone https://github.com/JuliaLang/julia.git
30+
- run: cd /tmp/julia && git checkout 1fd46e6251b7e8fd60559ed513144efdbb69cb7c
31+
- run: cd /tmp/julia && make -j2
32+
- run: cd /tmp/julia && make install
33+
- run: echo "/tmp/julia/usr/bin" >> $GITHUB_PATH
34+
- run: which -a julia
35+
- run: which julia
36+
- run: julia --version
37+
- run: julia -e 'using InteractiveUtils; InteractiveUtils.versioninfo(; verbose = true)'
4838
- uses: julia-actions/julia-buildpkg@v1
4939
- uses: julia-actions/julia-runtest@v1
5040
env:
5141
JULIA_DEBUG: 'all'
5242
BUMPSTDLIBS_TOKEN_FOR_TESTS: ${{ secrets.BUMPSTDLIBS_TOKEN_FOR_TESTS }}
53-
- uses: julia-actions/julia-processcoverage@v1
54-
- uses: codecov/codecov-action@v1
55-
with:
56-
file: lcov.info
57-
docs:
58-
name: Documentation
59-
runs-on: ubuntu-latest
60-
steps:
61-
- uses: actions/checkout@v2
62-
- uses: julia-actions/setup-julia@v1
63-
with:
64-
version: '1'
65-
- run: |
66-
julia --project=docs -e '
67-
using Pkg
68-
Pkg.develop(PackageSpec(path=pwd()))
69-
Pkg.instantiate()'
70-
- run: |
71-
julia --project=docs -e '
72-
using Documenter: doctest
73-
using BumpStdlibs
74-
doctest(BumpStdlibs)'
75-
- run: julia --project=docs docs/make.jl
76-
env:
77-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
78-
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

0 commit comments

Comments
 (0)