Skip to content

Commit 3f98220

Browse files
committed
test: simplify
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
1 parent 0ca509a commit 3f98220

4 files changed

Lines changed: 3 additions & 12 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,4 @@ jobs:
8484
uses: actions/upload-artifact@v4
8585
with:
8686
name: finit-test-${{ matrix.compiler }}
87-
path: |
88-
test/*.log
89-
test/sysroot/setup-sysroot.log
87+
path: test/*.log

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,7 @@ jobs:
6969
uses: actions/upload-artifact@v4
7070
with:
7171
name: finit-release-test-logs
72-
path: |
73-
finit-*/_build/sub/test/*.log
74-
finit-*/_build/sub/test/sysroot/setup-sysroot.log
72+
path: finit-*/_build/sub/test/*.log
7573
- name: Extract ChangeLog entry ...
7674
run: |
7775
awk '/-----*/{if (x == 1) exit; x=1;next}x' doc/ChangeLog.md \

.github/workflows/weekly.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,4 @@ jobs:
6464
uses: actions/upload-artifact@v4
6565
with:
6666
name: finit-weekly-test-logs
67-
path: |
68-
finit-*/_build/sub/test/*.log
69-
finit-*/_build/sub/test/sysroot/setup-sysroot.log
67+
path: finit-*/_build/sub/test/*.log

test/setup-sysroot.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
set -eu
44

5-
# Log setup output for debugging
6-
SETUP_LOG="${SYSROOT:-./sysroot}/setup-sysroot.log"
7-
exec > >(tee "$SETUP_LOG") 2>&1
85
echo "=== Finit Test Sysroot Setup ==="
96
echo "Date: $(date)"
107
echo "SYSROOT: $SYSROOT"

0 commit comments

Comments
 (0)