trying to fix testing pipeline

This commit is contained in:
overflowerror 2021-05-05 23:11:00 +02:00
parent ccd1441c90
commit 4871cb81c1
2 changed files with 3 additions and 5 deletions

View file

@ -1,4 +1,4 @@
name: C/C++ CI
name: Test Suite
on:
push:
@ -9,12 +9,10 @@ on:
jobs:
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install deps
run: sudo apt update && sudo apt install libpthread-stubs0-dev libc6
- name: make test
run: make test
- name: run tests

View file

@ -1,7 +1,7 @@
CC = gcc
CFLAGS = -std=c99 -Wall -D_POSIX_C_SOURCE=201112L -D_XOPEN_SOURCE=500 -D_GNU_SOURCE -static -g
LD = gcc
LDFLAGS = -lpthread -lrt
LDFLAGS = -pthread -lrt
AR = ar
ARFLAGS = rcs