-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add backwards compatibility tests (#23)
- Loading branch information
Showing
5 changed files
with
98 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: back-compat PR | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "go.*" | ||
- "**/*.go" | ||
- ".github/workflows/*.yml" | ||
|
||
permissions: | ||
contents: read | ||
|
||
env: | ||
GO_VERSION: '1.22.5' | ||
|
||
jobs: | ||
check-back-compat: | ||
name: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: build head | ||
run: | | ||
go build -o omm_head | ||
cp omm_head /var/tmp | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: main | ||
- name: build main | ||
run: | | ||
go build -o omm_main | ||
cp omm_main /var/tmp | ||
- name: Run last version | ||
run: | | ||
/var/tmp/omm_main --db-path=/var/tmp/throwaway.db 'test: a task from main' | ||
- name: Run current version | ||
run: | | ||
/var/tmp/omm_head --db-path=/var/tmp/throwaway.db 'test: a task from PR HEAD' | ||
/var/tmp/omm_head --db-path=/var/tmp/throwaway.db tasks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: back-compat | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
env: | ||
GO_VERSION: '1.22.5' | ||
|
||
jobs: | ||
check-back-compat: | ||
name: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 2 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: build head | ||
run: | | ||
go build -o omm_head | ||
cp omm_head /var/tmp | ||
rm omm_head | ||
- run: git checkout HEAD~1 | ||
- name: build main | ||
run: | | ||
go build -o omm_prev | ||
cp omm_prev /var/tmp | ||
- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters