-
Notifications
You must be signed in to change notification settings - Fork 35
65 lines (62 loc) · 1.95 KB
/
test.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
name: Test
on:
push:
branches: [ master ]
pull_request_target:
branches: [ master ]
jobs:
test-posix:
name: Build and test on POSIX systems
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, macos-13 ]
steps:
- name: Checkout Janet
uses: actions/checkout@v4
with:
repository: janet-lang/janet
path: janet
ref: refs/heads/master
- name: Build Janet
run: cd janet && make clean && make && make test
- name: Install Janet
run: cd janet && sudo make install
- name: Checkout the repository
uses: actions/checkout@v4
with:
path: spork
- name: Build Spork
run: cd spork && janet -l ./bundle -e "(build)"
- name: Test Install
run: sudo janet -e '(bundle/install "spork")'
- name: Run Tests
run: cd spork && janet -l ./bundle -e "(test)"
test-windows:
name: Build and test on Windows
strategy:
matrix:
os: [ windows-latest, windows-2019 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
path: spork
- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1
- name: Download Janet Latest Release
shell: cmd
run: curl -fSLo janet.msi https://github.com/janet-lang/janet/releases/download/v1.36.0/janet-1.36.0-windows-x64-installer.msi
- name: Install Janet
shell: cmd
run: msiexec /quiet /i janet.msi ALLUSERS=1
- name: Build Spork
shell: cmd
run: cd spork && "C:\\Program Files\\Janet\\bin\\janet.exe" -l ./bundle -e "(build)"
- name: Test Install
shell: cmd
run: "C:\\Program Files\\Janet\\bin\\janet.exe" -e "(bundle/install `spork`)"
- name: Run Tests
shell: cmd
run: cd spork && "C:\\Program Files\\Janet\\bin\\janet.exe" -l ./bundle -e "(test)"