Skip to content
Snippets Groups Projects
Commit f83892eb authored by Veronique Legrand's avatar Veronique Legrand
Browse files

work in progress: setting up CI again on more recent operating systems

parent 9dc5333f
No related branches found
No related tags found
No related merge requests found
Pipeline #156862 failed
......@@ -2,7 +2,19 @@ makefile_generation_and_compilation_plus_run_nrt_tests_cluster:
image: docker:27
script:
- sleep 3 # Try to avoid "ERROR: open /certs/client/ca.pem: no such file or directory"
- docker build -t test_rh8.8_image -f Dockerfile_redhat_autotools .
- docker run -td -v $(pwd):/ROCK -w /ROCK --name test_all test_rh8.8_image
- docker build -t test_rl8_image -f CI/Dockerfile_RockyLinux_autotools .
- docker run -td -v $(pwd):/ROCK -w /ROCK --name test_all test_rhl8_image
- docker ps -a
- docker exec test_all sh -c "./run_tests_ci.sh"
- docker exec test_all sh -c "./CI/run_tests_ci.sh"
makefile_generation_and_compilation_plus_run_nrt_tests_ubuntu:
image: docker:27
script:
- sleep 3
- docker build -t test_ubuntu22_image -f CI/Dockerfile_ubuntu22.04_autotools
- docker run -td -v $(pwd):/ROCK -w /ROCK --name test_all_ubuntu test_ubuntu22_image
- docker ps -a
- docker exec test_all sh -c "./CI/run_tests_ci.sh"
......@@ -6,6 +6,7 @@ module load m4/1.4.18 || exit 4
module load autoconf/2.69 || exit 5
module load automake/1.16.3 || exit 6
module list || exit 7
cd ..
aclocal || exit 8
autoconf -i || exit 9
automake || exit 10
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment