Make queue wait() explicit, rather than every kernel launch. #144
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: CI Tests | |
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@v2 | |
with: | |
submodules: recursive | |
- name: Run docker build | |
run: | | |
docker build --network=host -t build:latest . | |
- name: Run regression tests | |
run: | | |
docker run -w /root -e TRAVIS=1 build:latest make sure | |