-
Notifications
You must be signed in to change notification settings - Fork 99
73 lines (73 loc) · 2.25 KB
/
ci.yml
File metadata and controls
73 lines (73 loc) · 2.25 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
name: CI
on:
push:
branches:
- master
- release-*
pull_request:
types: [opened, synchronize, reopened]
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
jobs:
test:
name: Julia ${{ matrix.machine.version }} - ${{ matrix.machine.os }}-${{ matrix.machine.arch }} - ${{ matrix.moi_test_modules }}
runs-on: ${{ matrix.machine.os }}
strategy:
fail-fast: false
matrix:
moi_test_modules:
- 'General;Benchmarks;FileFormats;Nonlinear'
- 'Bridges/General'
- 'Bridges/Constraint'
- 'Bridges/Objective'
- 'Bridges/Variable'
- 'Test'
- 'Utilities'
machine:
- version: 'nightly'
os: ubuntu-latest
arch: x64
downgrade: false
- version: '1'
os: windows-latest
arch: x64
downgrade: false
- version: '1.10'
os: ubuntu-latest
arch: x64
downgrade: true
- version: '1'
os: ubuntu-latest
arch: x86
downgrade: false
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.machine.version }}
arch: ${{ matrix.machine.arch }}
- uses: julia-actions/cache@v2
- if: ${{ matrix.machine.downgrade }}
uses: julia-actions/julia-downgrade-compat@v2
with:
mode: deps
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
depwarn: error
allow_reresolve: ${{ !matrix.machine.downgrade }}
force_latest_compatible_version: ${{ !matrix.machine.downgrade }}
env:
MOI_TEST_MODULES: ${{ matrix.moi_test_modules }}
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}