aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/linux.yml12
1 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index 9361d32..cef2939 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -70,28 +70,26 @@ jobs:
CFLAGS: -Werror
run: |-
set -x
- mkdir build
- cd build
- ../configure
+ ./configure
- name: 'Build'
run: |-
set -x
- make -C build -j$(nproc) VERBOSE=1
+ make -j$(nproc) VERBOSE=1
- name: 'Test as non-root'
run: |-
set -x
whoami
- make -C build check
+ make check
- name: 'Test as root'
run: |-
set -x
- sudo make -C build check
+ sudo make check
- name: 'Install'
run: |-
set -x -o pipefail
- make -C build install DESTDIR="${PWD}"/ROOT/
+ make install DESTDIR="${PWD}"/ROOT/
find ROOT/ | sort | xargs ls -ld