-
-
Notifications
You must be signed in to change notification settings - Fork 17
118 lines (99 loc) · 2.81 KB
/
mamba.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
name: Micromamba CI
on: [push]
jobs:
Micromamba_linux:
name: Micromamba (Ubuntu-22.04)
runs-on: ubuntu-22.04
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
- name: install micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment-linux-dev.yml
environment-name: nelson
- name: cmake configure
run: |
mkdir -p build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DWITHOUT_SLICOT_MODULE=ON \
-DCMAKE_PREFIX_PATH=$CONDA_PREFIX \
-DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \
-DCMAKE_INSTALL_LIBDIR=lib
shell: micromamba-shell {0}
- name: make
run: |
cd build
cmake --build . -- -j $(nproc)
shell: micromamba-shell {0}
- name: get module skeleton
run: |
cd build
cmake --build . -- get_module_skeleton
shell: micromamba-shell {0}
- name: build help
run: |
cd build
cmake --build . -- buildhelp
shell: micromamba-shell {0}
- name: install
run: |
cd build
cmake --build . -- install
shell: micromamba-shell {0}
- name: all tests
run: |
cd build
xvfb-run cmake --build . -- tests_all
shell: micromamba-shell {0}
Micromamba_macos:
name: Micromamba (macOS 14)
runs-on: macos-14
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
- name: install micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment-macos-dev.yml
environment-name: nelson
- name: cmake configure
run: |
mkdir -p build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DFORCE_LIBGFORTRAN_LINK=ON \
-DWITHOUT_SLICOT_MODULE=ON \
-DCMAKE_PREFIX_PATH=$CONDA_PREFIX \
-DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \
-DCMAKE_INSTALL_LIBDIR=lib
shell: micromamba-shell {0}
- name: make
run: |
cd build
cmake --build .
shell: micromamba-shell {0}
- name: get module skeleton
run: |
cd build
cmake --build . -- get_module_skeleton
shell: micromamba-shell {0}
- name: build help
run: |
cd build
cmake --build . -- buildhelp
shell: micromamba-shell {0}
- name: install
run: |
cd build
cmake --build . -- install
shell: micromamba-shell {0}
- name: all tests
run: |
cd build
export OMP_NUM_THREADS=1
cmake --build . -- tests_all
shell: micromamba-shell {0}