-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (37 loc) · 1020 Bytes
/
build.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
name: CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{matrix.os}}
steps:
- name: Checkout zoridor
uses: actions/checkout@v2
with:
path: zoridor
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v1
with:
version: 0.13.0
- name: Build test
run: zig build test
working-directory: zoridor
- name: Build terminal
run: zig build -Dweb=false
working-directory: zoridor
- name: Build web
run: zig build -Dweb=true
working-directory: zoridor
- name: Setup Pages
if: github.ref == 'refs/heads/main'
uses: actions/configure-pages@v3
- name: Upload Artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v1
with:
path: "./zig-out"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2