File tree Expand file tree Collapse file tree 2 files changed +33
-5
lines changed
Expand file tree Collapse file tree 2 files changed +33
-5
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,6 @@ name: Test
22on :
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 }}
105jobs :
116 build :
127 name : build Linux
Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments