-
Notifications
You must be signed in to change notification settings - Fork 6
133 lines (114 loc) · 4.1 KB
/
build.yaml
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
name: Build Binary
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
create_prerelease:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master' && github.repository == 'official-monty/Monty'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set Prerelease Name
id: prerelease_info
run: |
DATE=$(date +'%Y%m%d')
SHORT_SHA=$(git rev-parse --short=8 HEAD)
PRERELEASE_NAME="Monty-dev-${DATE}-${SHORT_SHA}"
echo "PRERELEASE_NAME=$PRERELEASE_NAME" >> $GITHUB_ENV
echo "Prerelease Name: $PRERELEASE_NAME"
- name: Delete Existing Release
shell: bash
run: |
gh release delete prerelease-latest -y || true
gh api -X DELETE "repos/${{ github.repository }}/git/refs/tags/prerelease-latest" || true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Prerelease
shell: bash
run: |
gh release create prerelease-latest -t "${{ env.PRERELEASE_NAME }}" -p || true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build_and_upload:
needs: create_prerelease
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set Up Environment
shell: bash
run: |
DATE=$(date +'%Y%m%d')
SHORT_SHA=$(git rev-parse --short=8 HEAD)
OS_NAME=$(echo "${{ matrix.os }}" | cut -d'-' -f1)
if [[ "$OS_NAME" == "windows" ]]; then
BINARY_NAME="Monty-${OS_NAME}-dev-${DATE}-${SHORT_SHA}.exe"
else
BINARY_NAME="Monty-${OS_NAME}-dev-${DATE}-${SHORT_SHA}"
fi
echo "BINARY_NAME=$BINARY_NAME" >> $GITHUB_ENV
echo "Binary Name: $BINARY_NAME"
- name: Install tac on macOS
if: matrix.os == 'macos-latest'
run: brew install coreutils
- name: Extract the Bench Reference
id: benchref
shell: bash
run: |
tac_cmd="tac"
if [[ "$OSTYPE" == "darwin"* ]]; then
tac_cmd="gtac" # Use 'gtac' on macOS, provided by coreutils
fi
for hash in $(git rev-list -100 HEAD); do
benchref=$(git show -s $hash | $tac_cmd | grep -m 1 -o -x '[[:space:]]*\b[Bb]ench[ :]\+[1-9][0-9]\{5,7\}\b[[:space:]]*' | sed 's/[^0-9]//g') && break || true
done
[[ -n "$benchref" ]] && echo "benchref=$benchref" >> $GITHUB_ENV && echo "Reference bench: $benchref" || echo "No bench found"
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Install build dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install build-essential -y
- name: Install Make on Windows
if: matrix.os == 'windows-latest'
run: choco install make
- name: Run Make
run: make
- name: Get Bench Output
id: bench_output
shell: bash
run: |
full_output=$(./monty bench)
echo "$full_output"
bench_output=$(echo "$full_output" | grep -o -E '[0-9]+' | head -n 1)
echo "bench_output=$bench_output" >> $GITHUB_ENV
echo "Current bench output: $bench_output"
- name: Compare Bench Output
shell: bash
run: |
if [[ "$bench_output" -ne "$benchref" ]]; then
echo "::warning::Benchmark output for ${{ matrix.os }} ($bench_output) differs from reference ($benchref)"
else
echo "Benchmark output matches reference."
fi
- name: Upload Binary to Release
shell: bash
if: github.ref == 'refs/heads/master' && github.repository == 'official-monty/Monty'
run: |
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then
binary_path="./monty.exe"
else
binary_path="./monty"
fi
asset_name="monty-${{ matrix.os }}"
cp "$binary_path" "$BINARY_NAME"
gh release upload prerelease-latest "$BINARY_NAME" --clobber
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}