Skip to content

Commit 658e9ca

Browse files
committed
fix linux build
1 parent 0d19c72 commit 658e9ca

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/android.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,24 @@ jobs:
1515
uses: xpol/[email protected]
1616
with:
1717
lua-version: "5.3.5"
18+
19+
- name: Create Build Environment
20+
run: cmake -E make_directory build
21+
22+
- name: Configure Toolset
23+
shell: bash
24+
working-directory: build
25+
run: cmake $GITHUB_WORKSPACE/frameworks/toolset -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DLUA=lua54
26+
27+
- name: Build Toolset
28+
working-directory: build
29+
shell: bash
30+
run: cmake --build .
31+
32+
- name: Install Toolset
33+
working-directory: build
34+
shell: bash
35+
run: cmake --install .
36+
1837
- name: Build with Gradle
1938
run: cd runtime-src/proj.android && ./gradlew assembleRelease

0 commit comments

Comments
 (0)