Skip to content
Snippets Groups Projects
Commit 012cec06 authored by moenck's avatar moenck
Browse files

Added interfaces to the CI script as a dep.

parent dae31137
No related branches found
No related tags found
No related merge requests found
Pipeline #12421 failed
...@@ -23,6 +23,12 @@ stages: ...@@ -23,6 +23,12 @@ stages:
paths: paths:
- build - build
expire_in: 1 day expire_in: 1 day
before_script:
- 'curl -o artifacts.zip --header "JOB-TOKEN: $CI_JOB_TOKEN" "https://git.imp.fu-berlin.de/api/v4/projects/2576/jobs/artifacts/master/download?job=package%20ubuntu-18.04"'
- 7z e artifacts.zip; 7z e '*.tar.xz'; rm *.tar.xz; 7z x '*.tar'; rm *.tar
- mkdir dependencies
- name='RF_Interfaces'; mv $name-* dependencies/$name
- export CMAKE_PREFIX_PATH="$(pwd)/dependencies"
.build windows: &build_windows .build windows: &build_windows
stage: build stage: build
...@@ -32,6 +38,11 @@ stages: ...@@ -32,6 +38,11 @@ stages:
- build - build
expire_in: 1 day expire_in: 1 day
before_script: before_script:
- 'curl.exe -o artifacts.zip --header "JOB-TOKEN: $CI_JOB_TOKEN" "https://git.imp.fu-berlin.de/api/v4/projects/2576/jobs/artifacts/master/download?job=package%20windows%5bcuda%5d"'
- 7z e artifacts.zip; 7z e *.tar.xz; Remove-Item -Force *.tar.xz; 7z x *.tar; Remove-Item -Force *.tar
- New-Item -ItemType Directory -Force 'dependencies'
- $name='RF_Interfaces'; Move-Item -Force "$name-*" dependencies/$name
- $env:CMAKE_PREFIX_PATH="$((Get-Item -Path '.').FullName)/dependencies;$env:VCPKG_CUDA_INSTALL_DIR"
- C:/VsDevEnv.ps1 -arch=amd64 - C:/VsDevEnv.ps1 -arch=amd64
build ubuntu-18.04: build ubuntu-18.04:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment