-
-
Notifications
You must be signed in to change notification settings - Fork 157
56 lines (56 loc) · 1.74 KB
/
pr.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
name: PR
on:
pull_request:
env:
MOON_DEBUG: 'true'
PROTO_DEBUG: 'true'
jobs:
version:
name: Version check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
cache: yarn
- run: yarn install --immutable
- run: yarn version check
- run: node ./scripts/version/checkBumpForRustChanges.mjs
# This just tests package building, which release uses
- run: bash ./scripts/release/buildPackages.sh
clibin:
name: CLI binary check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: bash ./scripts/checks/cliBinary.sh
shell: bash
installer:
name: Install script check
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
# Unix
- run: bash ./website/static/install/moon.sh
if: ${{ runner.os != 'Windows' }}
- run: bash ./website/static/install/moon.sh 1.20.0
if: ${{ runner.os != 'Windows' }}
- run: bash ./website/static/install/proto.sh
if: ${{ runner.os != 'Windows' }}
- run: bash ./website/static/install/proto.sh 0.29.0
if: ${{ runner.os != 'Windows' }}
# Windows
- run: pwsh.exe ./website/static/install/moon.ps1
if: ${{ runner.os == 'Windows' }}
- run: pwsh.exe ./website/static/install/moon.ps1 1.20.0
if: ${{ runner.os == 'Windows' }}
- run: pwsh.exe ./website/static/install/proto.ps1
if: ${{ runner.os == 'Windows' }}
- run: pwsh.exe ./website/static/install/proto.ps1 0.29.0
if: ${{ runner.os == 'Windows' }}