-
Notifications
You must be signed in to change notification settings - Fork 2
58 lines (58 loc) · 1.92 KB
/
lint-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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Lint Builds
'on':
push: &p
branches:
- '**'
paths:
# It would be nice if I could specify this per-job, but I'm not making a whole new file just to avoid running
# clang for web-only changes.
- src/*
- wasm/*
- .clang-format
- .github/workflows/lint-build.yml
pull_request: *p
workflow_dispatch: ~
jobs:
build-native:
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
runs-on: macos-latest
name: Verify C++ Build with clang
steps:
- uses: actions/checkout@v3
- name: Invoke clang
shell: bash
run: >+
clang++ -DVERSION=0.0.0 -DNDEBUG -WCL4 -Wnon-gcc -Wimplicit-fallthrough -Werror -std=c++14 -o /dev/null
src/*.cpp
lint-npm:
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
runs-on: ubuntu-latest
name: Lint with JS Tools
steps:
- uses: actions/checkout@v3
- name: npm lint
shell: bash
run: |
cd wasm
npm ci --no-fund
npm run lint
verify-wasm-build:
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
runs-on: ubuntu-latest
name: Verify wasm build
steps:
# Largely copied from build-and-deploy-pages.jobs.build-wasm.steps
- uses: actions/checkout@v3
- uses: numworks/setup-emscripten@bbc4f5e15974bc13e69fdadecfd1858ecb1c4dbb
- uses: actions/cache@v3
with:
path: /opt/hostedtoolcache/emscripten/latest/x64/upstream/emscripten/cache/sysroot/lib/wasm32-emscripten/lto
key: libs-${{ hashFiles('~/work/Trilangle/Trilangle/emsdk/upstream/emscripten/system/lib/**.c') }}
restore-keys: "libs-\n"
- name: Run build script
shell: bash
run: |
cd wasm
npm ci --omit dev --no-fund
./build_wasm.sh
# Some errors, especially with the closure compiler, don't surface in debug builds.