Skip to content

Commit

Permalink
Merge pull request #174 from invenia/fc/auto-ci-fix
Browse files Browse the repository at this point in the history
Fix CI Tests and Artifact Cache Issues
  • Loading branch information
fchorney authored Jan 22, 2021
2 parents 6485b95 + b4193dc commit aea16b6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:
- os: windows-latest
test_type: userimage
include:
# Add a 1.3 job because that's what Invenia actually uses
# Add a 1.5 job because that's what Invenia actually uses
- os: ubuntu-latest
version: 1.3
version: 1.5
arch: x64
test_type: basic
- os: ubuntu-latest
version: 1.3
version: 1.5
arch: x64
test_type: userimage
steps:
Expand All @@ -52,15 +52,16 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
- uses: actions/cache@v2
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
key: ${{ runner.os }}-${{ matrix.arch }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-${{ matrix.arch }}-test-${{ env.cache-name }}-
${{ runner.os }}-${{ matrix.arch }}-test-
${{ runner.os }}-${{ matrix.arch }}-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/JuliaNightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@ jobs:
with:
version: nightly
arch: x64
- uses: actions/cache@v1
- uses: actions/cache@v2
env:
cache-name: cache-artifacts
cache-name: julia-nightly-cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
key: ${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
${{ env.cache-name }}-
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-processcoverage@v1
Expand Down

0 comments on commit aea16b6

Please sign in to comment.