You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
322 B
YAML
23 lines
322 B
YAML
language: python
|
|
os: linux
|
|
dist: xenial
|
|
python: 3.7
|
|
|
|
services:
|
|
- docker
|
|
|
|
stages:
|
|
- test
|
|
env:
|
|
global:
|
|
- OMP_NUM_THREADS=2
|
|
jobs:
|
|
- IMG=debian:stable
|
|
|
|
jobs:
|
|
allow_failures:
|
|
- env: IMG=debian:stable
|
|
|
|
script:
|
|
- docker build --build-arg "OMP_NUM_THREADS=${OMP_NUM_THREADS}" --build-arg "IMG=${IMG}" "."
|