-
Notifications
You must be signed in to change notification settings - Fork 3
47 lines (43 loc) · 1.17 KB
/
back-compat.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
name: back-compat
on:
push:
branches: [ "main" ]
permissions:
contents: read
env:
GO_VERSION: '1.23.0'
jobs:
check-back-compat:
name: build
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- run: git checkout HEAD~1
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: build last commit
run: |
go build -o omm_prev
cp omm_prev /var/tmp
rm omm_prev
- run: git checkout main
- name: build head
run: |
go build -o omm_head
cp omm_head /var/tmp
rm omm_head
- name: Run last version
run: |
/var/tmp/omm_prev --db-path=/var/tmp/throwaway.db 'test: a task from previous commit'
- name: Run current version
run: |
/var/tmp/omm_head --db-path=/var/tmp/throwaway.db 'test: a task from main HEAD'
/var/tmp/omm_head --db-path=/var/tmp/throwaway.db tasks
./.github/scripts/checknumtasks.sh "$(/var/tmp/omm_head --db-path=/var/tmp/throwaway.db tasks | wc -l | xargs)" 2