CI: minor improvements to build/test workflow
- add a concurrency group so things aren't run on push *and* pull_request update - add a name to steps missing one
This commit is contained in:
parent
e43d8d90fa
commit
0990b2ec81
18
.github/workflows/ci.yaml
vendored
18
.github/workflows/ci.yaml
vendored
@ -1,5 +1,15 @@
|
|||||||
name: Tests
|
name: Tests
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
- 'ci-**'
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
testsuite:
|
testsuite:
|
||||||
strategy:
|
strategy:
|
||||||
@ -23,7 +33,8 @@ jobs:
|
|||||||
container: ${{ matrix.void_image }}
|
container: ${{ matrix.void_image }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- run: |
|
- name: Prepare container
|
||||||
|
run: |
|
||||||
xbps-install -Syu || xbps-install -yu xbps
|
xbps-install -Syu || xbps-install -yu xbps
|
||||||
xbps-install -Sy ${{ matrix.c_compiler }} ${{ matrix.extra_deps }} make pkg-config zlib-devel openssl-devel libarchive-devel kyua atf-devel
|
xbps-install -Sy ${{ matrix.c_compiler }} ${{ matrix.extra_deps }} make pkg-config zlib-devel openssl-devel libarchive-devel kyua atf-devel
|
||||||
- name: Build
|
- name: Build
|
||||||
@ -32,4 +43,5 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
./configure --enable-tests
|
./configure --enable-tests
|
||||||
make -j
|
make -j
|
||||||
- run: make check
|
- name: Check
|
||||||
|
run: make check
|
||||||
|
Loading…
Reference in New Issue
Block a user