-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: OAR | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- feature/oar | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
python-version: ['3.8', '3.9', '3.10', '3.11'] | ||
fail-fast: false | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Disable etelemetry | ||
run: echo "NO_ET=TRUE" >> $GITHUB_ENV | ||
- uses: actions/checkout@v4 | ||
- name: Install oardocker | ||
run: | | ||
python -m venv oardocker | ||
cd oardocker | ||
source bin/activate | ||
pip install oar-docker | ||
- name: Launch oardocker | ||
run: | | ||
oardocker init | ||
oardocker build | ||
oardocker install git+https://github.com/oar-team/oar.git | ||
- name: Run oardocker | ||
run: | | ||
oardocker start -v $pwd:/pydra | ||
docker images | ||
docker ps -a | ||
oardocker connect frontend | ||
oarstat | ||
oarsub -I |