forked from cyclus/cyclus
-
Notifications
You must be signed in to change notification settings - Fork 0
92 lines (85 loc) · 2.39 KB
/
macos_build_test.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
name: MacOS Build/Test Cyclus
on:
# allows us to run workflows manually
workflow_dispatch:
pull_request:
paths-ignore:
- ".github/workflows/build_test.yml"
- ".github/workflows/publish_latest.yml"
- ".github/workflows/publish_release.yml"
- ".github/workflows/changelog_test.yml"
- ".github/workflows/code_coverage.yml"
- ".github/workflows/rocky_build_test.yml"
- "doc/**"
- "CHANGELOG.rst"
push:
paths-ignore:
- ".github/workflows/build_test.yml"
- ".github/workflows/publish_latest.yml"
- ".github/workflows/publish_release.yml"
- ".github/workflows/changelog_test.yml"
- ".github/workflows/code_coverage.yml"
- ".github/workflows/rocky_build_test.yml"
- "doc/**"
- "CHANGELOG.rst"
jobs:
build-test-conda:
strategy:
fail-fast: false
matrix:
macos_versions: [
macos-13,
macos-14,
]
runs-on: ["${{ matrix.macos_versions }}"]
steps:
- name: Setup XCode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest
- name: Checkout Cyclus
uses: actions/checkout@v4
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.12"
miniforge-version: "latest"
conda-solver: "libmamba"
auto-update-conda: true
channels: conda-forge
- name: Build and Test Cyclus
id: build-cyclus
shell: bash -el {0}
run: |
mamba install -y \
compilers \
cmake \
make \
git \
glib \
libxml2 \
libxmlpp-4.0 \
liblapack \
pkg-config \
coincbc \
boost-cpp \
hdf5 \
sqlite \
pcre \
setuptools \
pytest \
pytables \
pandas \
jinja2 \
cython \
websockets \
pprintpp \
pip
export CC=$CONDA_PREFIX/bin/clang
export CXX=$CONDA_PREFIX/bin/clang++
export CPP=$CONDA_PREFIX/bin/clang-cpp
mkdir -p $(python3 -m site --user-site)
python3 install.py -j 3 --allow-milps
export PATH=$HOME/.local/bin:$PATH
cyclus_unit_tests
cd tests && python3 -m pytest