aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2023-11-12 20:37:51 +0200
committerMartin Pärtel <martin.partel@gmail.com>2023-11-12 20:37:51 +0200
commit1fdf240aec17b6525ee2ebc76152ea8109f83595 (patch)
treef1d59d49db1755a3f983189b2aec1552c9479cec /.github/workflows
parent19b68fcd804f3fe51cf0cff752182c7560ca486f (diff)
downloadbindfs-1fdf240aec17b6525ee2ebc76152ea8109f83595.tar.gz
...
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