Skip to content

Commit

Permalink
test more combinations
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbyrne committed Nov 25, 2020
1 parent 09b30cc commit af5f7b1
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/UnitTests.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Unit Tests

on:
pull_request:

push:
branches:
- master

jobs:
test-slurm:
timeout-minutes: 20
strategy:
matrix:
os: [ubuntu-latest]
julia_version: ["1.5", "nightly"]
julia_arch: [x64]
fail-fast: false

runs-on: ${{ matrix.os }}

env:
SLURM: "latest"

steps:
- name: Checkout
uses: actions/checkout@v2.2.0

- uses: julia-actions/setup-julia@latest
with:
arch: ${{ matrix.julia_arch }}
version: ${{ matrix.julia_version }}

- name: Start Slurm Docker image
run: |
docker pull giovtorres/docker-centos7-slurm:$SLURM
docker run -d -it -h ernie -v $(pwd):/SlurmTools -v $(julia -e 'print(dirname(Sys.BINDIR))'):/julia --name slurm-$SLURM giovtorres/docker-centos7-slurm:$SLURM

- name: Instantiate package
run: docker exec slurm-$SLURM /julia/bin/julia --project=/SlurmTools -e 'using Pkg; Pkg.instantiate(verbose=true); Pkg.build(verbose=true)'

- name: Run tests without allocation
run: docker exec slurm-$SLURM /julia/bin/julia --project=/SlurmTools -e 'using Pkg; Pkg.test(test_args=["slurm"])'

- name: Run tests inside allocation
run: docker exec slurm-$SLURM salloc -t 00:10:00 -n 2 /julia/bin/julia --project=/SlurmTools -e 'using Pkg; Pkg.test(test_args=["slurm"])'

- name: Run tests inside sbatch
run: |
cat << EOF > sbatch.sh
#!/bin/bash
#SBATCH --ntasks=2
#SBATCH --time=00:10:00
/julia/bin/julia --project=/SlurmTools -e 'using Pkg; Pkg.test(test_args=["slurm"])'
EOF
docker exec slurm-$SLURM sbatch /SlurmTools/sbatch.sh

0 comments on commit af5f7b1

Please sign in to comment.