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 51fda7b commit 347b8a0Copy full SHA for 347b8a0
.github/workflows/build.yml
@@ -45,15 +45,19 @@ jobs:
45
submodules: true
46
47
- name: ⬇️ install xmake
48
- uses: xmake-io/github-action-setup-xmake@v1
+ shell: bash
49
+ run: |
50
+ wget -q https://github.com/xmake-io/xmake/releases/download/v2.8.7/xmake-v2.8.7.gz.run
51
+ sudo chmod 777 ./xmake-v2.8.7.gz.run
52
+ ./xmake-v2.8.7.gz.run
53
54
- name: 👷 build
55
shell: bash
56
run: |
57
export XMAKE_ROOT=y # Only need to use "--root" in CI
58
xmake --version
59
source env.sh
- export RT_XMAKE_LINK_TYPE="static"
60
+
61
pushd apps
62
xmake f -a ${{ matrix.arch }} -vyD
63
xmake -j$(nproc) -vyD
0 commit comments