-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
103 additions
and
0 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,102 @@ | ||
name: release test | ||
|
||
on: | ||
push: | ||
# branches: | ||
# - main | ||
pull_request: | ||
paths: | ||
- .goreleaser/*.yml | ||
|
||
jobs: | ||
darwin-release-test: | ||
runs-on: macos-latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- name: Setup | ||
run: | | ||
brew install goreleaser | ||
brew install sqlite3 | ||
- name: Release (dry-run) | ||
run: | | ||
goreleaser release --config .goreleaser/darwin.yml --clean --snapshot --skip-publish | ||
linux-release-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install packages | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install sqlite3 | ||
- name: Install aws-cli | ||
uses: isbang/setup-awscli@v0.1.0 | ||
|
||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Go on Ubuntu | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- name: Run GoReleaser (dry-run) | ||
uses: goreleaser/goreleaser-action@v5 | ||
with: | ||
distribution: goreleaser | ||
version: latest | ||
args: --config .goreleaser/linux.yml --clean --snapshot --skip-publish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
windows-release-test: | ||
runs-on: windows-2019 | ||
steps: | ||
- name: Use LF | ||
run: | | ||
git config --global core.autocrlf false | ||
git config --global core.eol lf | ||
- name: Install packages | ||
run: | | ||
choco install sqlite | ||
- name: Install aws-cli | ||
uses: isbang/setup-awscli@v0.1.0 | ||
|
||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Go on Windows | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- name: Run tests | ||
run: env TBLS=tbls.exe make ci_windows | ||
shell: bash | ||
|
||
- name: Run GoReleaser (dry-run) | ||
uses: goreleaser/goreleaser-action@v5 | ||
with: | ||
distribution: goreleaser | ||
version: latest | ||
args: --config .goreleaser/windows.yml --clean --snapshot --skip-publish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
|
@@ -21,6 +21,7 @@ builds: | |
- linux | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
archives: | ||
- | ||
id: tbls-archive | ||
|