Add rt tests to CI

This commit is contained in:
Rodrigo Arias 2022-08-22 16:46:17 +02:00
parent c3c7aa730e
commit 3b90326b12
2 changed files with 17 additions and 0 deletions

View File

@ -17,3 +17,17 @@ build:old-glibc:
stage: build stage: build
script: script:
- nix-build nix/old-glibc.nix - nix-build nix/old-glibc.nix
build:nosv-tests:
image:
name: nixos/nix:2.9.2
stage: build
before_script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | ssh-add /dev/fd/0
- mkdir -p ~/.ssh
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- cat /proc/sys/user/max_user_namespaces || true
script:
- nix --extra-experimental-features "nix-command impure-derivations ca-derivations" --option sandbox false build -L --impure --file nix/nosv.nix

View File

@ -19,6 +19,9 @@ in
# current directory as-is # current directory as-is
preConfigure = '' preConfigure = ''
rm -rf build install rm -rf build install
# There is no /bin/bash
patchShebangs test/*.sh
''; '';
cmakeBuildType = "Debug"; cmakeBuildType = "Debug";