-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (51 loc) · 1.46 KB
/
iosbuild.yml
File metadata and controls
58 lines (51 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: ios build workflows
on:
push:
branches:
- master
permissions:
contents: read
jobs:
build:
strategy:
matrix:
include:
- os: macos-15
runs-on: ${{ matrix.os }}
steps:
- name: Checkout main repository code
uses: actions/checkout@v6
- name: Set TERM variable
run: echo "TERM=xterm" >> $GITHUB_ENV
- name: Set up Dependency xengine Environment
run: |
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_IOS_Arm64.zip
unzip ./XEngine_IOS_Arm64.zip -d ./XEngine_IOS_Arm64
mv XEngine_IOS_Arm64 $HOME/XEngine_IOS_Arm64
- name: make
run: |
cd XEngine_Module
cd jsoncpp
make PLATFORM=ios
cd ..
cd tinyxml2
make PLATFORM=ios
cd ..
cd XEngine_InfoReport
make PLATFORM=ios
cd ..
cd XEngine_Token
make PLATFORM=ios
cd ..
cd XEngine_MSGNotify
make PLATFORM=ios
cd ..
cd XEngine_AIApi
make PLATFORM=ios
cd ..
cd XEngine_Verification
make PLATFORM=ios
cd ..
cd XEngine_PluginExtension
make PLATFORM=ios