File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : OAR
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ - feature/oar
8
+ pull_request :
9
+
10
+ jobs :
11
+ build :
12
+ strategy :
13
+ matrix :
14
+ python-version : ['3.8', '3.9', '3.10', '3.11']
15
+ fail-fast : false
16
+ runs-on : ubuntu-latest
17
+
18
+ steps :
19
+ - name : Disable etelemetry
20
+ run : echo "NO_ET=TRUE" >> $GITHUB_ENV
21
+ - uses : actions/checkout@v4
22
+ - name : Install oardocker
23
+ run : |
24
+ python -m venv oardocker
25
+ cd oardocker
26
+ source bin/activate
27
+ pip install oar-docker
28
+ - name : Launch oardocker
29
+ run : |
30
+ oardocker init
31
+ oardocker build
32
+ oardocker install git+https://github.com/oar-team/oar.git
33
+ - name : Run oardocker
34
+ run : |
35
+ oardocker start -v $pwd:/pydra
36
+ docker images
37
+ docker ps -a
38
+ oardocker connect frontend
39
+ oarstat
40
+ oarsub -I
You can’t perform that action at this time.
0 commit comments