Skip to content

Commit 2585a3b

Browse files
committed
TestNoDocker
Signed-off-by: Günter Neiß <gneiss@web.de>
1 parent 19c60e6 commit 2585a3b

File tree

2 files changed

+33
-5
lines changed

2 files changed

+33
-5
lines changed

.github/workflows/Test.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ name: Test
22
on:
33
push:
44
workflow_dispatch:
5-
env:
6-
NODE_VERSION: '18.17'
7-
YARN_VERSION: '1.22'
8-
GO_VERSION: '1.21'
9-
GH_TOKEN: ${{ github.token }}
105
jobs:
116
build:
127
name: build Linux

.github/workflows/TestNoDocker.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: TestNoDocker
2+
on:
3+
push:
4+
workflow_dispatch:
5+
jobs:
6+
build:
7+
name: build Linux
8+
runs-on: ubuntu-latest
9+
defaults:
10+
run:
11+
shell: bash
12+
timeout-minutes: 90
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
- name: Mod AppImage to use chrome-sandbox of local os
17+
run: |
18+
set -x
19+
set -v
20+
mkdir t
21+
cd t
22+
mkdir squashfs-root
23+
echo "Test" >squashfs-root/Test.txt
24+
TOOL=".github/tools/appimagetool-x86_64_2019-05-01.AppImage"
25+
ls -la ${TOOL}
26+
ARCH=x86_64 ${TOOL} squashfs-root
27+
rm -r squashfs-root/
28+
rm "${EXE}"
29+
mv *.AppImage ../
30+
cd ..
31+
rm -r t
32+
33+

0 commit comments

Comments
 (0)