-
Notifications
You must be signed in to change notification settings - Fork 35
48 lines (43 loc) · 1.38 KB
/
check.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
name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Spack
uses: spack/setup-spack@v2
with:
ref: develop # Spack version (examples: develop, releases/v0.21)
buildcache: true # Configure oci://ghcr.io/spack/github-actions-buildcache
color: true # Force color output (SPACK_COLOR=always)
path: ${{github.workspace}}/spack # Where to clone Spack
- name: Install TFEL and NumPy
shell: spack-sh {0}
run: |
spack install boost+python+numpy+exception+container
spack install tfel@master~python~python_bindings~aster~fortran~abaqus~calculix~ansys~europlexus~cyrano~lsdyna~comsol~diana-fea
- name: cmake
shell: spack-sh {0}
run: |
spack load py-numpy boost tfel
cmake -DCMAKE_BUILD_TYPE=Release . \
-Denable-c-bindings=ON \
-Denable-fortran-bindings=ON \
-Denable-python-bindings=ON \
-Denable-portable-build=ON \
-Denable-julia-bindings=OFF
- name: make
shell: spack-sh {0}
run: |
spack load py-numpy boost
make
- name: make check
shell: spack-sh {0}
run: |
spack load py-numpy boost tfel
make check