We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63c87ec commit e0fe760Copy full SHA for e0fe760
.github/workflows/build.yml
@@ -55,12 +55,8 @@ jobs:
55
xmake --version
56
source env.sh
57
pushd apps
58
- cat > apps.lua << EOF
59
- local packagefile = path.join(path.join(os.scriptdir(), "${{ matrix.app }}"), "xmake.lua")
60
- if os.isfile(packagefile) then
61
- includes(packagefile)
62
- end
63
- EOF
+ echo includes(path.join(path.join(os.scriptdir(), ${{ matrix.app }} ), "xmake.lua")) > xmake.lua
+ cat xmake.lua
64
xmake f -a x86_64 --target_os=linux -vyD
65
xmake -j$(nproc) -vyD -P .
66
popd
0 commit comments