Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 8ca4b4b9 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Merge branch 'ci/macosx' into 'master'

ci: add macosx job

See merge request solverstack/chameleon!249
parents ecaa0498 4e65a37d
No related branches found
No related tags found
No related merge requests found
...@@ -59,3 +59,19 @@ build_starpu_simgrid: ...@@ -59,3 +59,19 @@ build_starpu_simgrid:
SIMU: simu SIMU: simu
BUILD_OPTIONS: "-DCHAMELEON_SIMULATION=ON -DCHAMELEON_USE_CUDA=ON -DCHAMELEON_USE_MPI=OFF" BUILD_OPTIONS: "-DCHAMELEON_SIMULATION=ON -DCHAMELEON_USE_CUDA=ON -DCHAMELEON_USE_MPI=OFF"
VERSION: starpu_simgrid VERSION: starpu_simgrid
build_starpu_macosx:
stage: build
tags: ['macosx']
except:
- schedules
artifacts:
untracked: true
name: build_starpu_macosx
expire_in: 48 hours
variables:
VERSION: starpu
script:
- tools/build_macosx.sh
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
.build_script_template: .build_script_template:
image: registry.gitlab.inria.fr/solverstack/docker/distrib image: registry.gitlab.inria.fr/solverstack/docker/distrib
stage: build stage: build
tags: ["large"] tags: ["linux"]
script: script:
- export LOGNAME=chameleon_${VERSION}.log - export LOGNAME=chameleon_${VERSION}.log
- echo $LOGNAME - echo $LOGNAME
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
.test_script_template: .test_script_template:
image: registry.gitlab.inria.fr/solverstack/docker/distrib image: registry.gitlab.inria.fr/solverstack/docker/distrib
stage: test stage: test
tags: ["large"] tags: ["linux"]
script: script:
- export LOGNAME=chameleon_${VERSION}_${CATEGORY}_${PRECISION} - export LOGNAME=chameleon_${VERSION}_${CATEGORY}_${PRECISION}
- echo $LOGNAME - echo $LOGNAME
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
coverity: coverity:
image: registry.gitlab.inria.fr/solverstack/docker/distrib image: registry.gitlab.inria.fr/solverstack/docker/distrib
stage: analyse stage: analyse
tags: ["large"] tags: ["linux"]
dependencies: [] dependencies: []
artifacts: artifacts:
name: chameleon_coverity name: chameleon_coverity
......
sonarqube: sonarqube:
image: registry.gitlab.inria.fr/solverstack/docker/distrib image: registry.gitlab.inria.fr/solverstack/docker/distrib
stage: analyse stage: analyse
tags: ["large"] tags: ["linux"]
artifacts: artifacts:
name: chameleon_analysis name: chameleon_analysis
expire_in: 1 week expire_in: 1 week
......
...@@ -88,3 +88,23 @@ test_starpu_mpi_z: ...@@ -88,3 +88,23 @@ test_starpu_mpi_z:
CATEGORY: mpi CATEGORY: mpi
PRECISION: z PRECISION: z
TESTS_RESTRICTION: "-R \"_${CATEGORY}_${PRECISION}\"" TESTS_RESTRICTION: "-R \"_${CATEGORY}_${PRECISION}\""
test_starpu_shm_s_macosx:
stage: test
tags: ['macosx']
except:
- schedules
needs: [build_starpu_macosx]
dependencies:
- build_starpu_macosx
artifacts:
untracked: true
name: build_starpu_macosx
expire_in: 48 hours
variables:
VERSION: starpu
script:
- cd build-starpu && ctest -V -R test_shm_s
-D ExperimentalTest
-D ExperimentalCoverage
-D ExperimentalSubmit
#!/bin/bash
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/local/Cellar/openblas/0.3.13/lib/pkgconfig/:${PKG_CONFIG_PATH}
cd build-starpu
cmake .. -DCMAKE_INSTALL_PREFIX=$PWD/../install -DCHAMELEON_PREC_D=OFF -DCHAMELEON_PREC_C=OFF -DCHAMELEON_PREC_Z=OFF -DBLA_PREFER_PKGCONFIG=ON -DBUILD_SHARED_LIBS=ON
make -j5
make install
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment