Skip to content

Commit

Permalink
Update Slurm version to 19.05.4 (#15)
Browse files Browse the repository at this point in the history
* Update Slurm version to 19.05.4

- Add Travis-CI integration

* Wait up to the default 20 mins for script to return
  • Loading branch information
giovtorres authored Dec 1, 2019
1 parent 6cce37f commit 8923595
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
language: python
python:
- "3.7"
services:
- docker
install:
pipenv sync
script:
travis_wait pipenv run pytest -v
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ RUN set -ex \
&& rm -f /tmp/install-python.sh

# Compile, build and install Slurm from Git source
ARG SLURM_TAG=slurm-19-05-3-2
ARG SLURM_TAG=slurm-19-05-4-1
RUN set -ex \
&& git clone https://github.com/SchedMD/slurm.git \
&& pushd slurm \
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dockerfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ def test_slurmctld_is_listening(host, Slow):

def test_slurmd_version(host):
cmd = host.run("scontrol show config | grep SLURM_VERSION")
assert "19.05.3" in cmd.stdout
assert "19.05.4" in cmd.stdout

0 comments on commit 8923595

Please sign in to comment.