-
Notifications
You must be signed in to change notification settings - Fork 360
54 lines (54 loc) · 1.56 KB
/
test.yml
File metadata and controls
54 lines (54 loc) · 1.56 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
name: Run Tests
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
workflow_dispatch:
jobs:
run_tests:
runs-on: ubuntu-latest
container: ghcr.io/pathofbuildingcommunity/pathofbuilding-tests:latest
strategy:
fail-fast: false
matrix:
shard: [0, 1, 2]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests
run: |
set -eu
shard_count=3
shard="${{ matrix.shard }}"
index=0
found=0
for spec in $(find spec/System -name '*_spec.lua' | sort); do
if [ $((index % shard_count)) -eq "$shard" ]; then
found=1
echo "::group::$spec"
if ! busted --lua=luajit "../$spec"; then
echo "::endgroup::"
exit 1
fi
echo "::endgroup::"
fi
index=$((index + 1))
done
[ "$found" -eq 1 ]
check_modcache:
runs-on: ubuntu-latest
container: ghcr.io/pathofbuildingcommunity/pathofbuilding-tests:latest
steps:
- name: Install git dependency
run: apk add git
- name: Checkout
uses: actions/checkout@v4
- name: Regenerate ModCache
env:
LUA_PATH: ../runtime/lua/?.lua;../runtime/lua/?/init.lua
REGENERATE_MOD_CACHE: 1
run: cd src; luajit HeadlessWrapper.lua
- run: git config --global --add safe.directory $(pwd)
- name: Check if the generated ModCache is different
run: git diff --exit-code src/Data/ModCache.lua