8000 run-all by t-8ch · Pull Request #3152 · util-linux/util-linux · GitHub
[go: up one dir, main page]

Skip to content

run-all #3152

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue 8000 and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft

run-all #3152

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/cibuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,8 @@ jobs:
uses: actions/checkout@v1
- name: Ubuntu setup
run: sudo -E .github/workflows/cibuild-setup-ubuntu.sh
- name: Install qemu-user
run: sudo -E apt-get install qemu-user-binfmt
- name: OpenWrt environment
run: |
OPENWRT_RELEASE=23.05.4
Expand Down Expand Up @@ -244,7 +246,8 @@ jobs:
.github/workflows/cibuild.sh MAKE
- name: Check
run: |
source .github/workflows/openwrt-sdk-env.sh ~/${{ env.OPENWRT_SDK }}
if [[ "$OPENWRT_TARGET" = "x86" ]]; then
.github/workflows/cibuild.sh CHECK
if [[ "$OPENWRT_TARGET" != "x86" ]]; then
export QEMU_USER=1
fi
source .github/workflows/openwrt-sdk-env.sh ~/${{ env.OPENWRT_SDK }}
.github/workflows/cibuild.sh CHECK
2 changes: 1 addition & 1 deletion tests/ts/lsfd/column-ainodeclass
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ EXPR="(FD == 3)"
for C in pidfd inotify; do
ts_init_subtest $C
{
coproc MKFDS { "$TS_HELPER_MKFDS" $C $FD ; }
coproc MKFDS { timeout 60s "$TS_HELPER_MKFDS" $C $FD ; }
if read -r -u "${MKFDS[0]}" PID; then
${TS_CMD_LSFD} -n -o ASSOC,STTYPE,AINODECLASS -p "${PID}" -Q "${EXPR}"
echo "$C"':ASSOC,STTYPE,AINODECLASS': $?
Expand Down
1 change: 1 addition & 0 deletions tests/ts/misc/setarch
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ ts_init "$*"

ts_check_test_command "$TS_CMD_SETARCH"
ts_skip_docker
ts_skip_qemu_user

ARCH=$(uname -m)

Expand Down
Loading
0