-
Notifications
You must be signed in to change notification settings - Fork 0
259 lines (223 loc) · 7.61 KB
/
main.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
name: Build and test Absytree
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "build"
cancel-in-progress: true
jobs:
build-absytree-linux:
name: Build Absytree Linux
runs-on: ubuntu-latest
strategy:
matrix:
container: ["ubuntu:22.04"]
container:
image: ${{ matrix.container }}
volumes:
- ${{ github.workspace }}:/app
steps:
- name: Checkout the repo
uses: actions/[email protected]
- run: apt-get update
continue-on-error: true
- run: apt-get install gcc-mingw-w64 libx11-xcb-dev curl wget build-essential git musl-tools -y
continue-on-error: true
- name: Install stable rust toolchain
uses: dtolnay/[email protected]
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.29.3'
# install choosenim and nim
#- run: wget https://nim-lang.org/choosenim/init.sh -O init-choosenim.sh
#- run: ls -la
#- run: chmod +x init-choosenim.sh
#- run: CHOOSENIM_CHOOSE_VERSION="stable" ./init-choosenim.sh -y
- uses: iffy/install-nim@v5
with:
version: binary:2.0.6
- name: add Absytree as git safe.directory so nimble can install stuff
run: git config --global --add safe.directory /__w/Absytree/Absytree
continue-on-error: true
# not working because "source" doesn't exist?
#- run: echo "export PATH=/github/home/.nimble/bin:\$PATH" > ~/.profile
#- run: source ~/.profile
# continue-on-error: true
- run: PATH=/github/home/.nimble/bin:$PATH nimble setup
# linux builds
- run: PATH=/github/home/.nimble/bin:$PATH nimble buildAbsytreeServer
- if: always()
run: PATH=/github/home/.nimble/bin:$PATH nimble buildLspWs
#- if: always()
# run: PATH=/github/home/.nimble/bin:$PATH nimble buildBrowser
- if: always()
run: PATH=/github/home/.nimble/bin:$PATH nimble buildDesktop --app:console -D:forceLogToFile -D:enableGui=false -D:enableTerminal=true --out:ast
- if: always()
run: PATH=/github/home/.nimble/bin:$PATH nimble buildDesktop --app:console -D:forceLogToFile -D:enableGui=false -D:enableTerminal=true -d:musl --out:ast-musl
- if: always()
run: PATH=/github/home/.nimble/bin:$PATH nimble buildDesktop --app:gui -D:forceLogToFile -D:enableGui=true -D:enableTerminal=false --out:ast-gui
# create release packages
- run: PATH=/github/home/.nimble/bin:$PATH nim ./tools/package_release.nims
- run: ls -la release_linux
#- run: ls -la release_web
# make zips
- name: Zip release_linux
uses: vimtor/[email protected]
with:
files: release_linux
dest: release_linux.zip
#- name: Zip release_web
# uses: vimtor/[email protected]
# with:
# files: release_web
# dest: release_web.zip
# upload artifacts
- name: Upload release_linux
uses: actions/[email protected]
with:
name: release_linux
path: release_linux.zip
#- name: Upload release_web
# uses: actions/[email protected]
# with:
# name: release_web
# path: release_web.zip
build-absytree-windows:
name: Build Absytree Windows
runs-on: windows-2022
steps:
- name: Checkout the repo
uses: actions/[email protected]
- run: rustc --version
continue-on-error: true
- run: cmake --version
continue-on-error: true
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.29.3'
#- uses: hecrj/setup-rust-action@v2
# with:
# rust-version: stable
- name: Install latest nightly
uses: actions-rs/[email protected]
with:
toolchain: stable
override: true
- run: rustc --version
continue-on-error: true
- run: cmake --version
continue-on-error: true
- run: SET TMP=C:\Temp
continue-on-error: true
- run: SET TEMP=C:\Temp
continue-on-error: true
- run: echo %TMP%
continue-on-error: true
- run: echo %TEMP%
continue-on-error: true
- run: $env:TMP = "$env:USERPROFILE\T"
continue-on-error: true
- run: $env:TEMP = "$env:USERPROFILE\T"
continue-on-error: true
- run: echo $env:TMP $env:TEMP
continue-on-error: true
- uses: iffy/install-nim@v5
with:
version: binary:2.0.6
- name: nimble setup
continue-on-error: true
run: nimble setup
- name: nimble setup
run: nimble setup
# windows builds
- if: always()
run: nimble buildDesktop --app:console -D:forceLogToFile -D:enableGui=false -D:enableTerminal=true --out:ast.exe
- if: always()
run: nimble buildDesktop --app:gui -D:forceLogToFile -D:enableGui=true -D:enableTerminal=false --out:astg.exe
- if: always()
run: nimble buildAbsytreeServerWindows
- if: always()
run: nimble buildLspWsWindows
# create release packages
- run: nim ./tools/package_release.nims
# make zips
- name: Zip release_windows
uses: vimtor/[email protected]
with:
files: release_windows
dest: release_windows.zip
# upload artifacts
- name: Upload release_windows
uses: actions/[email protected]
with:
name: release_windows
path: release_windows.zip
run-tests:
name: Run tests
runs-on: ubuntu-latest
container:
image: "nimlang/nim:2.0.2-regular"
volumes:
- ${{ github.workspace }}:/app
steps:
- name: Checkout the repo
uses: actions/[email protected]
- name: add Absytree as git safe.directory so nimble can install stuff
run: git config --global --add safe.directory /__w/Absytree/Absytree
- name: nimble setup
run: PATH=/github/home/.nimble/bin:$PATH nimble setup
- name: Run tests
run: testament --print category unit
- name: Build test report
if: always()
run: testament html
- uses: actions/[email protected]
if: always()
with:
name: testresults.html
path: testresults.html
# Build job
build-page:
runs-on: ubuntu-latest
needs: run-tests
if: always()
steps:
- name: Checkout
uses: actions/[email protected]
- uses: actions/[email protected]
with:
name: testresults.html
continue-on-error: true
- name: Setup Pages
uses: actions/[email protected]
- name: Build with Jekyll
uses: actions/[email protected]
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/[email protected]
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build-page
if: always()
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/[email protected]