-
Notifications
You must be signed in to change notification settings - Fork 10
196 lines (187 loc) · 7.25 KB
/
build_static_lib.yml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
name: Build static library for QuickJS
on:
workflow_dispatch:
pull_request:
types: [opened, reopened]
jobs:
linux-x86_64:
if: startsWith(github.head_ref, 'dependabot/submodules/deps/quickjs')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
- uses: jirutka/setup-alpine@v1
with:
arch: x86_64
packages: "build-base make cmake"
- name: build
shell: alpine.sh {0}
run: |
mkdir -p deps/libs/linux_amd64
cd deps/quickjs
make clean
make -e CONFIG_LTO=y libquickjs.a
mv libquickjs.a ../libs/linux_amd64
- name: Create PR
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update QuickJS Static Library For Linux x86_64
branch-suffix: random
delete-branch: true
title: Update QuickJS Static library For Linux x86_64
base: ${{ github.head_ref }}
linux-aarch64:
if: startsWith(github.head_ref, 'dependabot/submodules/deps/quickjs')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
- uses: jirutka/setup-alpine@v1
with:
arch: aarch64
packages: "build-base make cmake"
- name: build
shell: alpine.sh {0}
run: |
mkdir -p deps/libs/linux_arm64
cd deps/quickjs
make clean
make -e CONFIG_LTO=y libquickjs.a
mv libquickjs.a ../libs/linux_arm64
- name: Create PR
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update QuickJS Static Library For Linux aarch64
branch-suffix: random
delete-branch: true
title: Update QuickJS Static library For Linux aarch64
base: ${{ github.head_ref }}
darwin_amd64:
if: startsWith(github.head_ref, 'dependabot/submodules/deps/quickjs')
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
- name: build
run: |
mkdir -p deps/libs/darwin_amd64
cd deps/quickjs
make clean
sed -i '.bak' 's/CFLAGS += -Wextra/CFLAGS += -Wextra -target x86_64-apple-macos12/' Makefile
make -e CONFIG_LTO=y libquickjs.a
mv Makefile.bak Makefile
mv libquickjs.a ../libs/darwin_amd64
- name: Create PR
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update QuickJS Static Library For darwin_amd64
branch-suffix: random
delete-branch: true
title: Update QuickJS Static library For darwin_amd64
base: ${{ github.head_ref }}
darwin_arm64:
if: startsWith(github.head_ref, 'dependabot/submodules/deps/quickjs')
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
- name: build
run: |
mkdir -p deps/libs/darwin_arm64
cd deps/quickjs
make clean
sed -i '.bak' 's/CFLAGS += -Wextra/CFLAGS += -Wextra -target arm64-apple-macos12/' Makefile
make -e CONFIG_LTO=y libquickjs.a
mv Makefile.bak Makefile
mv libquickjs.a ../libs/darwin_arm64
- name: Create PR For darwin_arm64
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update QuickJS Static Library For darwin_arm64
branch-suffix: random
delete-branch: true
title: Update QuickJS Static library For darwin_arm64
base: ${{ github.head_ref }}
windows_386:
if: startsWith(github.head_ref, 'dependabot/submodules/deps/quickjs')
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
- name: Set up MinGW
uses: egor-tensin/setup-mingw@v2.2.0
with:
platform: x86
version: 12.2.0
- name: build
run: |
mkdir deps/libs/windows_386 -force
cd deps/quickjs
make clean
make -e CONFIG_WIN32=y CONFIG_M32=y CONFIG_LTO=y libquickjs.a
copy libquickjs.a ../libs/windows_386
- name: Create PR
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update QuickJS Static Library For windows_386
branch-suffix: random
delete-branch: true
title: Update QuickJS Static library For windows_386
base: ${{ github.head_ref }}
windows_amd64:
if: startsWith(github.head_ref, 'dependabot/submodules/deps/quickjs')
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
- name: Set up MinGW
uses: egor-tensin/setup-mingw@v2.2.0
with:
platform: x64
version: 12.2.0
- name: build
run: |
mkdir deps/libs/windows_amd64 -force
cd deps/quickjs
make clean
make -e CONFIG_WIN32=y CONFIG_LTO=y libquickjs.a
copy libquickjs.a ../libs/windows_amd64
- name: Create PR
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update QuickJS Static Library For windows_amd64
branch-suffix: random
delete-branch: true
title: Update QuickJS Static library For windows_amd64
base: ${{ github.head_ref }}
update_headers:
if: startsWith(github.head_ref, 'dependabot/submodules/deps/quickjs')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
- name: Copy headers
run:
cp -a deps/quickjs/*.h deps/include/
- name: Create PR
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update QuickJS Header Files
branch-suffix: random
delete-branch: true
title: Update QuickJS Header Files
base: ${{ github.head_ref }}