Add support for OAR Scheduler #12
Workflow file for this run
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
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 | |
oardocker init | |
oardocker build | |
oardocker install git+https://github.com/oar-team/oar.git | |
oardocker start | |
docker images | |
docker ps -a | |
oardocker connect frontend | |
oarstat | |
oarsub -I |