-
-
Notifications
You must be signed in to change notification settings - Fork 20
91 lines (82 loc) · 2.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: PR
on: pull_request
concurrency:
group: pr-${{ github.ref }}
cancel-in-progress: true
jobs:
superlinter:
name: Lint bash, docker, markdown, and yaml
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Lint codebase
uses: docker://github/super-linter:v3.8.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: true
VALIDATE_BASH: true
VALIDATE_DOCKERFILE: true
VALIDATE_MD: true
VALIDATE_YAML: true
validate-docker-image-builds:
name: Validate Docker image builds
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Docker build
run: "docker build --pull ."
verify-changelog:
name: Verify CHANGELOG is valid
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/changelog-tool:release
steps:
- uses: actions/[email protected]
- name: Verify CHANGELOG
run: changelog-tool verify
x86_linux:
name: x86_64 Linux
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder:release
steps:
- uses: actions/[email protected]
- name: Test with most recent ponyc release
run: make test
x86_windows:
name: x86_64 Windows
runs-on: windows-2022
steps:
- uses: actions/[email protected]
- name: Test with most recent ponyc release
run: |
Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases/raw/versions/latest/ponyc-x86-64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
Expand-Archive -Path C:\ponyc.zip -DestinationPath C:\ponyc;
$env:PATH = 'C:\ponyc\bin;' + $env:PATH;
.\make.ps1 -Command test 2>&1
x86_macos:
name: x86_64 MacOS
runs-on: macos-13
steps:
- uses: actions/[email protected]
- name: install ponyc
run: bash .ci-scripts/macos-x86-install-pony-tools.bash release
- name: brew install dependencies
run: brew install coreutils
- name: Test with most recent ponyc release
run: |
export PATH="/tmp/ponyc/bin/:$PATH"
make test
arm64_macos:
name: arm64 MacOS
runs-on: macos-14
steps:
- uses: actions/[email protected]
- name: install ponyc
run: bash .ci-scripts/macos-arm64-install-pony-tools.bash release
- name: brew install dependencies
run: brew install coreutils
- name: Test with most recent ponyc release
run: |
export PATH="/tmp/ponyc/bin/:$PATH"
make test