Skip to content
Snippets Groups Projects

Draft: Update CI/CD setting to reflect current setup and give better tutorial

Open Maximilian Sander requested to merge update_cicd_info into preview
1 file
+ 23
6
Compare changes
  • Side-by-side
  • Inline
@@ -85,25 +85,42 @@ Use the variable `SCHEDULER_PARAMETERS` and define the same parameters you would
- date
- pwd
- hostname
- <load needed modules>
- <compile your application>
script:
- date
- pwd
- hostname
- srun -c ${SLURM_CPUS_PER_TASK} ./my_application
after_script:
- date
- pwd
- hostname
test-job-haswell:
test-job-barnard:
extends: .test-job
tags:
- Barnard
variables:
SCHEDULER_PARAMETERS: -p haswell
test-job-power9:
SCHEDULER_PARAMETERS: --nodes=1
--ntasks=4
--cpus-per-task=4
--time=1:00:00
--mem-per-cpu=1700
--hint=nomultithread
test-job-alpha:
extends: .test-job
tags:
- Alpha
variables:
SCHEDULER_PARAMETERS: -p power9
SCHEDULER_PARAMETERS: --nodes=1
--ntasks=1
--cpus-per-task=6
--time=1:00:00
--mem-per-cpu=10G
--gres=gpu:1
--hint=nomultithread
```
## Current limitations
Loading