-
-
Notifications
You must be signed in to change notification settings - Fork 15
63 lines (50 loc) · 1.29 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
61
62
63
name: Bmad Ecosystem - Build & Test
on:
# Run on demand
workflow_dispatch:
# Run on push to main
push:
branches:
- "main"
# Run on pull requests
pull_request:
## Future Ideas:
## PR make it 10 or less
## For main and time based we can run something bigger
## Run when releases are published
## release:
## types:
## - "published"
# Configuration for the version of external packages
# We do this so we can cache them and avoid checking out that big
# repository at all times.
env:
EXTERNAL_PACKAGES_VERSION: main
#
jobs:
build:
runs-on: ${{ matrix.os }}
#
defaults:
run:
shell: bash
strategy:
matrix:
# Future Ideas:
# add macOS - check if GH Actions can make intel and arm
os: [ubuntu-latest]
shared: ["Y"]
openmp_mpi: ["N", "Y"]
steps:
# Check out the code from GitHub
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-dependencies
with:
external-packages-version: ${{ env.EXTERNAL_PACKAGES_VERSION }}
- name: Build Bmad
env:
USE_MPI: ${{ matrix.openmp_mpi }}
SHARED: ${{ matrix.shared }}
run: .github/scripts/install_bmad.sh
- name: Run Tests
run: .github/scripts/run_tests.sh