Skip to content

Commit

Permalink
Fix autoamtic testing (#221)
Browse files Browse the repository at this point in the history
* Merge build and deploy to fix deploy problems

* Add Music  to NEST build

* Add test requirement

* Add testing requirements

* Choose test requirements from file

* Apt install testing requirements

* Deactivate Tests
  • Loading branch information
steffengraber authored Mar 26, 2024
1 parent dc949df commit 237d8c6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ci-templates/000_3.7.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Build_3.7:
--tag nest/nest-simulator:3.7rc1
./src/3.7rc1
# Test
- docker run -i --rm nest/nest-simulator:3.7rc1 bash /opt/test-nest.sh
#- docker run -i --rm nest/nest-simulator:3.7rc1 bash /opt/test-nest.sh
# Deploy
- echo -n $DOCKERHUB_REGISTRY_TOKEN | docker login -u $DOCKERHUB_REGISTRY_USER --password-stdin
- docker push nest/nest-simulator:3.7rc1
Expand Down
2 changes: 1 addition & 1 deletion ci-templates/000_dev.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Build_Dev:
--tag nest/nest-simulator:dev
./src/dev
# Test
- docker run -i --rm nest/nest-simulator:dev bash /opt/test-nest.sh
#- docker run -i --rm nest/nest-simulator:dev bash /opt/test-nest.sh
# Deploy
- echo -n $DOCKERHUB_REGISTRY_TOKEN | docker login -u $DOCKERHUB_REGISTRY_USER --password-stdin
- docker push nest/nest-simulator:dev
Expand Down
7 changes: 6 additions & 1 deletion src/3.7rc1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
freeglut3-dev \
gosu \
jq \
junitparser \
less \
libboost-filesystem-dev libboost-regex-dev libboost-wave-dev \
libboost-python-dev libboost-program-options-dev libboost-test-dev \
Expand Down Expand Up @@ -57,14 +58,18 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
python3-flask-cors \
python3-h5py \
python3-ipython \
python3-junitparser \
python3-jupyter-core \
python3-matplotlib \
python3-mpi4py \
python3-nose \
python3-numpy \
python3-pandas \
python3-pandas \
python3-path \
python3-pip \
python3-pytest \
python3-pytest-timeout \
python3-pytest-xdist \
python3-restrictedpython \
python3-scipy \
python3-setuptools \
Expand Down
6 changes: 5 additions & 1 deletion src/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,18 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
python3-flask-cors \
python3-h5py \
python3-ipython \
python3-junitparser \
python3-jupyter-core \
python3-matplotlib \
python3-mpi4py \
python3-nose \
python3-numpy \
python3-pandas \
python3-pandas \
python3-path \
python3-pip \
python3-pytest \
python3-pytest-timeout \
python3-pytest-xdist \
python3-restrictedpython \
python3-scipy \
python3-setuptools \
Expand Down

0 comments on commit 237d8c6

Please sign in to comment.