We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef5d204 commit a35cbf7Copy full SHA for a35cbf7
1 file changed
.github/workflows/unity-ci.yml
@@ -19,6 +19,13 @@ jobs:
19
steps:
20
- uses: actions/checkout@v4
21
22
+ - name: Install libc++-dev
23
+ shell: bash
24
+ run: |
25
+ sudo apt-get install clang
26
+ sudo apt-get install libc++-dev
27
+ sudo apt-get install libc++abi-dev
28
+
29
# Node is needed because the test drives npm/tsc/esbuild
30
- name: Set up Node
31
uses: actions/setup-node@v4
@@ -27,6 +34,7 @@ jobs:
34
35
# Create empty project + import OneJS
36
# Deleting the Android folder in the end to avoid possible naming conflict with Linux
37
+ # https://github.com/Tencent/puerts/issues/1817#issuecomment-2292431530
38
- name: Bootstrap minimal Unity project
39
run: |
32
40
mkdir -p "$PROJECT_PATH/Assets" "$PROJECT_PATH/Packages" "$PROJECT_PATH/ProjectSettings"
0 commit comments