ris: fix rabbitmq stream offset on reconnect (#390) #1233
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux GPU Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
release: | |
types: | |
- published | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: [ self-hosted, linux, x64, gpu ] | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
BUILDCACHE_COMPRESS: true | |
BUILDCACHE_DIRECT_MODE: true | |
BUILDCACHE_ACCURACY: SLOPPY | |
BUILDCACHE_MAX_CACHE_SIZE: 536870912 | |
UBSAN_OPTIONS: halt_on_error=1:abort_on_error=1 | |
CUDACXX: /usr/local/cuda/bin/nvcc | |
CLICOLOR_FORCE: 1 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get deps | |
run: mkdir -p ~/deps && mv ~/deps . | |
- name: CMake | |
run: | | |
cmake ${{ matrix.config.cross }} \ | |
-G Ninja -S . -B build \ | |
-DCMAKE_C_COMPILER=gcc-12 \ | |
-DCMAKE_CXX_COMPILER=g++-12 \ | |
-DCMAKE_BUILD_TYPE=Release \ | |
-DMOTIS_CUDA=On \ | |
-DMOTIS_AVX=Off \ | |
-DMOTIS_AVX2=Off \ | |
-DMOTIS_WITH_WEBUI=${{ matrix.config.webui }} | |
- name: Build | |
run: | | |
./build/buildcache/bin/buildcache -z | |
cmake --build build --target \ | |
motis \ | |
motis-test \ | |
motis-itest | |
./build/buildcache/bin/buildcache -s | |
- name: Save deps | |
if: always() | |
run: mv deps ~ | |
- name: Run Tests | |
run: ${{ matrix.config.emulator }} ./build/motis-test | |
- name: Run Integration Tests | |
run: ${{ matrix.config.emulator }} ./build/motis-itest |