Skip to content

Commit

Permalink
Add release test
Browse files Browse the repository at this point in the history
  • Loading branch information
k1LoW committed Oct 2, 2023
1 parent 66421d6 commit e366e2a
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 0 deletions.
102 changes: 102 additions & 0 deletions .github/workflows/release-test.yml
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 }}
1 change: 1 addition & 0 deletions .goreleaser/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ builds:
- linux
goarch:
- amd64
- arm64
archives:
-
id: tbls-archive
Expand Down

0 comments on commit e366e2a

Please sign in to comment.