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 d9f5aaf commit 0647eb6Copy full SHA for 0647eb6
.github/workflows/ubuntu_Arm64_build.yml
@@ -47,10 +47,13 @@ jobs:
47
git submodule init
48
git submodule update
49
50
- git clone https://github.com/libxengine/libxengine.git
51
- cd libxengine
52
- chmod 777 *
53
- ./XEngine_LINEnv.sh -i 3
+ latest_tag=$(curl -s https://api.github.com/repos/libxengine/libxengine/releases/latest | jq -r .tag_name)
+ wget https://github.com/libxengine/libxengine/releases/download/$latest_tag/XEngine_UBuntu_24.04_Arm64.zip
+ unzip ./XEngine_UBuntu_24.04_Arm64.zip -d ./XEngine_UBuntu_24.04_Arm64
+ cd XEngine_UBuntu_24.04_Arm64
54
+ cp -rf ./XEngine_Include /usr/local/include
55
+ find ./XEngine_Linux -name "*.so" -exec cp {} /usr/local/lib \;
56
+ ldconfig
57
cd ..
58
59
cd XEngine_Source
0 commit comments