Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh committed Jan 11, 2024
1 parent 16b72f1 commit 9ea0397
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/run-on-arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ jobs:
runs-on: ubuntu-20.04
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}

# Run steps on Bullseye=Debian 11
strategy:
matrix:
include:
- arch: aarch64
distro: buster
distro: bullseye

steps:
- uses: actions/checkout@v4
Expand All @@ -26,9 +25,6 @@ jobs:
# Not required, but speeds up builds
githubToken: ${{ github.token }}

env: |
CMAKE_GENERATOR: Ninja
install: |
case "${{ matrix.distro }}" in
ubuntu*|jessie|stretch|buster|bullseye)
Expand All @@ -38,6 +34,6 @@ jobs:
esac
run: |
cmake -B build -DCMAKE_C_FLAGS="-Werror"
cmake -G Ninja -B build -DCMAKE_C_FLAGS="-Werror"
cmake --build build -j --target retest
./build/test/retest -r -v
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# Versioning
#

cmake_minimum_required(VERSION 3.13)
cmake_minimum_required(VERSION 3.14)

project(re
VERSION 3.8.0
Expand Down

0 comments on commit 9ea0397

Please sign in to comment.