-
Notifications
You must be signed in to change notification settings - Fork 32
60 lines (58 loc) · 1.58 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: CI
on:
push:
branches: "master"
tags: ["*"]
pull_request:
release:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1'
os:
- ubuntu-latest
- windows-latest
- macOS-13
arch:
- x64
- x86
include:
- os: macOS-latest
arch: aarch64
version: '1'
exclude:
- os: macOS-13
arch: x86
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: Cache artifacts
uses: actions/cache@v4
env:
cache-name: cache-artifacts
with:
path: |
~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- name: Build package
shell: julia --color=yes --project="" {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.build("MKL"; verbose=true)
- uses: julia-actions/julia-runtest@latest
env:
# Loading MKL during the tests can create an environment variable for OpenMP that is visible after the tests (#130)
JULIA_TEST_CHECK_MUTATED_ENV: "false"