-
Notifications
You must be signed in to change notification settings - Fork 198
44 lines (37 loc) · 1.01 KB
/
flux_testing.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
name: Test Parsl with Flux Scheduler
on:
pull_request:
types: [opened, synchronize]
jobs:
main-test-suite:
runs-on: ubuntu-latest
permissions:
packages: read
strategy:
fail-fast: false
matrix:
container: ['fluxrm/flux-sched:focal']
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 Parsl
uses: actions/checkout@v3
with:
repository: 'parsl/parsl'
ref: 'main' # or any specific branch
- name: Install Parsl and Dependencies
run: |
apt-get update && apt-get install -y python3-pip curl
pip3 install .
- name: Run Parsl local thread tests
run: |
make local_thread_test
- name: Test Parsl with Flux
run: |
pytest parsl/tests/test_flux.py