Skip to content

Split CI tests into a debug and release builds. #1

Split CI tests into a debug and release builds.

Split CI tests into a debug and release builds. #1

Workflow file for this run

name: CI Tests: Release

Check failure on line 1 in .github/workflows/ci-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-release.yml

Invalid workflow file

You have an error in your yaml syntax
on: [pull_request,push]
jobs:
Regression-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ubuntu_ver: [20.04]
name: ubuntu-${{ matrix.ubuntu_ver }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Run docker build
run: |
docker build --network=host --build-arg debug="DEBUG=" -t build:latest .
- name: Run regression tests
run: |
docker run -w /root -e TRAVIS=1 build:latest make sure