Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh committed Jan 9, 2024
1 parent 26bbc5c commit f8219d0
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/run-on-arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ on: [push, pull_request]
jobs:
build_job:
# The host should always be linux
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}

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

steps:
- uses: actions/checkout@v4
Expand All @@ -29,17 +29,15 @@ jobs:
env: |
CMAKE_GENERATOR: Ninja
shell: /bin/bash

install: |
case "${{ matrix.distro }}" in
ubuntu*|jessie|stretch|buster|bullseye)
apt-get update -q -y
apt-get install -q -y cmake gcc g++ git libssl-dev ninja-build valgrind
apt-get install -q -y cmake gcc g++ libssl-dev ninja-build
;;
esac
run: |
cmake -B build -DCMAKE_C_FLAGS="-Werror"
cmake --build build -j -t retest
valgrind --leak-check=full --show-reachable=yes --error-exitcode=42 ./build/test/retest -r -v
./build/test/retest -r -v

0 comments on commit f8219d0

Please sign in to comment.