Skip to content

Commit

Permalink
[wip] ci: switch to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleam committed Aug 9, 2024
1 parent 56b3430 commit e71939c
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 171 deletions.
171 changes: 0 additions & 171 deletions .drone.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: lint
on:
push:
branches:
- main
- 'scratch/**'
pull_request:

# Note: this doesn't use golangci/golangci-lint-action to work around
# an error triggered by us pinning to a golangci-lint version built
# with an older Go. Revisit when moving from golangci-lint v1.47.2.
#
# https://github.com/golangci/golangci-lint-action/issues/442#issuecomment-1203786890
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/[email protected]
- name: Run golangci-lint
run: golangci-lint run --version --verbose --out-format=github-actions
67 changes: 67 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: CI
on:
push:
branches:
- main
- 'scratch/**'
tags:
- 'v*'
pull_request:

jobs:
check:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.go }})
strategy:
fail-fast: false
matrix:
config:
- os: ubuntu-20.04
go: 1.21.x
- os: ubuntu-latest
go: stable
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.config.go }}
- name: Unit tests
shell: bash
run: go list ./... | grep -v integration | xargs go test
- name: Build bbi
shell: bash
run: |
version=$(git rev-parse 'HEAD^{tree}')
bin=$(mktemp -d)
go build -o "$bin/bbi" \
-ldflags "-X github.com/metrumresearchgroup/bbi/cmd.VERSION=$version" \
cmd/bbi/main.go
echo "$bin" >>$GITHUB_PATH
- name: Integration tests (postrun)
shell: bash
run: |
bbi version
go test ./integration/postrun
release:
if: github.ref_type == 'tag'
name: Make release
needs: check
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: stable
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
args: release --clean
workdir: cmd/bbi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e71939c

Please sign in to comment.