-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 970 Bytes
/
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
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/hello-world-batch.yaml
flux start python3 ./examples/flux/receive-job.py