sq/.github/workflows/main.yml
Neil O'Toole 6b613d9adc
#279: SQLite virtual tables (#304)
* sqlite: initial extensions support, including virtual tables and fts5
* sqlite: virtual table columns now report type
2023-08-21 10:05:17 -06:00

341 lines
9.2 KiB
YAML

name: Main pipeline
on:
push:
paths-ignore:
- '**.md'
- 'sq.json' # This is updated by scoop; no need to run a new build
# Allows this workflow to be manually triggered from the Actions tab
workflow_dispatch:
env:
GO_VERSION: 1.21.0
GORELEASER_VERSION: 1.20.0
GOLANGCI_LINT_VERSION: v1.54.1
BUILD_TAGS: 'sqlite_vtable sqlite_stat4 sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_math_functions'
# Note that windows doesn't have sqlite_icu, as that fails to build. Needs investigation.
BUILD_TAGS_WIN: 'sqlite_vtable sqlite_stat4 sqlite_fts5 sqlite_introspect sqlite_json sqlite_math_functions'
jobs:
test-linux-darwin:
strategy:
matrix:
os: [ ubuntu-22.04, macos-12]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
# Install gotestfmt on the VM running the action.
- name: Set up gotestfmt
uses: gotesttools/gotestfmt-action@v2
with:
# Optional: pass GITHUB_TOKEN to avoid rate limiting.
token: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: go build -tags '${{ env.BUILD_TAGS }}' -v ./...
# Run tests with nice formatting. Save the original log in /tmp/gotest.log
# https://github.com/GoTestTools/gotestfmt#github-actions
- name: Run tests
run: |
set -euo pipefail
go test -tags '${{ env.BUILD_TAGS }}' -json -v ./... 2>&1 | tee gotest.log | gotestfmt
# Upload the original go test log as an artifact for later review.
- name: Upload test log
uses: actions/upload-artifact@v3
if: always()
with:
name: test-log
path: gotest.log
if-no-files-found: warn
test-windows:
runs-on: windows-2022
steps:
# Copied from https://github.com/mattn/go-sqlite3/blob/master/.github/workflows/go.yaml#L73
# - uses: msys2/setup-msys2@v2
# with:
# update: true
# install: mingw-w64-x86_64-toolchain mingw-w64-x86_64-sqlite3
# msystem: MINGW64
# path-type: inherit
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Build
run: go build -tags '${{ env.BUILD_TAGS_WIN }}' -v ./...
# shell: msys2 {0}
- name: Run tests
run: |
go test -tags '${{ env.BUILD_TAGS_WIN }}' -v ./...
# shell: msys2 {0}
go-lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
# coverage:
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# with:
# fetch-depth: 0
#
# - name: Set up Go
# uses: actions/setup-go@v3
# with:
# go-version: ${{ env.GO_VERSION }}
#
# - name: Test
# run: go test -v ./...
#
# # https://github.com/ncruces/go-coverage-report
# - name: Update coverage report
# uses: ncruces/go-coverage-report@v0
# with:
# report: 'true'
# chart: 'true'
# amend: 'false'
# if: |
# github.event_name == 'push'
# continue-on-error: true
binaries-darwin:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: GoReleaser (build darwin binaries)
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser-pro
version: ${{ env.GORELEASER_VERSION }}
args: build --skip-validate --clean -f .goreleaser-darwin.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
- name: Upload assets (darwin)
uses: actions/upload-artifact@v3
with:
name: dist-darwin
path: dist-darwin
binaries-linux-amd64:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: GoReleaser (build linux-amd64 binaries)
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser-pro
version: ${{ env.GORELEASER_VERSION }}
args: build --skip-validate --clean -f .goreleaser-linux-amd64.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
- name: Upload assets (linux-amd64)
uses: actions/upload-artifact@v3
with:
name: dist-linux-amd64
path: dist-linux
binaries-linux-arm64:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Install toolchain dependencies
run: |
sudo apt update
sudo apt install -y gcc-aarch64-linux-gnu
- name: GoReleaser (build linux-arm64 binaries)
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser-pro
version: ${{ env.GORELEASER_VERSION }}
args: build --skip-validate --clean -f .goreleaser-linux-arm64.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
- name: Upload assets (linux-arm64)
uses: actions/upload-artifact@v3
with:
name: dist-linux-arm64
path: dist-linux
binaries-windows:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: GoReleaser (build windows binaries)
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser-pro
version: ${{ env.GORELEASER_VERSION }}
args: build --skip-validate --clean -f .goreleaser-windows.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
- name: Upload assets (windows)
uses: actions/upload-artifact@v3
with:
name: dist-windows
path: dist-windows
publish:
runs-on: ubuntu-22.04
if: startsWith(github.ref, 'refs/tags/v')
needs:
- go-lint
- test-linux-darwin
- test-windows
- binaries-darwin
- binaries-linux-amd64
- binaries-linux-arm64
- binaries-windows
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Download darwin artifacts
uses: actions/download-artifact@v3
with:
name: dist-darwin
path: dist-darwin
- name: Download linux-amd64 artifacts
uses: actions/download-artifact@v3
with:
name: dist-linux-amd64
path: dist-linux
- name: Download linux-arm64 artifacts
uses: actions/download-artifact@v3
with:
name: dist-linux-arm64
path: dist-linux
- name: Download windows artifacts
uses: actions/download-artifact@v3
with:
name: dist-windows
path: dist-windows
- name: Generate CHANGELOG delta for Goreleaser to consume
run: ./.generate-changelog-delta.sh > ./.CHANGELOG.delta.md
- name: GoReleaser (publish)
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser-pro
version: ${{ env.GORELEASER_VERSION }}
args: release --release-notes=./.CHANGELOG.delta.md -f .goreleaser.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
FURY_TOKEN: ${{ secrets.FURY_TOKEN }}
AUR_PRIVATE_KEY: ${{ secrets.AUR_PRIVATE_KEY }}
install:
# Verify that install mechanisms are working on the various
# supported platforms. This workflow runs *after* the new release
# has been published. So, if this workflow fails, it means that
# users are experiencing those failures. Fix the problem ASAP!
needs: publish
if: startsWith(github.ref, 'refs/tags/v')
uses: ./.github/workflows/test-install.yml