We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a1aaef commit 8543b9cCopy full SHA for 8543b9c
.github/workflows/test-unmount-force.yml
@@ -0,0 +1,24 @@
1
+name: Test unmount succeeds even if processes are still running
2
+on:
3
+ push:
4
+ branches:
5
+ - 'main'
6
+ - 'releases/**'
7
+ pull_request:
8
+ workflow_dispatch:
9
+
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: ./ # pguyot/arm-runner-action@HEAD
16
+ image_additional_mb: 1024
17
+ with:
18
+ commands: |
19
+ sudo apt update -y
20
+ sudo apt install xvfb fluxbox -y
21
+ export DISPLAY=:0.0
22
+ Xvfb :0 -screen 0 1280x720x24 > /dev/null 2>&1 &
23
+ sleep 1
24
+ fluxbox > /dev/null 2>&1 &
0 commit comments