-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (36 loc) · 1.32 KB
/
test.yaml
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
name: test jobspec
on:
pull_request: []
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container: ['fluxrm/flux-sched:jammy']
container:
image: ${{ matrix.container }}
options: "--platform=linux/amd64 --user root -it --init"
name: ${{ matrix.container }}
steps:
- name: Make Space
run: |
rm -rf /usr/share/dotnet
rm -rf /opt/ghc
- name: Checkout
uses: actions/checkout@v4
- name: Install jobspec
run: |
apt-get update && apt-get install -y python3-pip
pip3 install .
# Any additional examples added here will be tested
- name: Start Flux and Run Examples
run: |
which jobspec
flux start jobspec run ./examples/hello-world-jobspec.yaml
flux start jobspec run ./examples/group-with-group.yaml
flux start jobspec run ./examples/task-with-group.yaml
flux start python3 ./examples/flux/receive-job.py
# We don't need flux for satisfies
jobspec satisfy ./examples/subsystems/jobspec-spack-subystem-unsatisfied.yaml --subsystem-dir ./examples/subsystems || echo "Correct"
jobspec satisfy ./examples/subsystems/jobspec-spack-subystem-satisfied.yaml --subsystem-dir ./examples/subsystems