Skip to content

Commit

Permalink
ci: add lint and build-release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
roobre committed Oct 8, 2024
1 parent 678af2e commit 676ad1b
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Lint

on:
pull_request: {}

jobs:
golangci:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
only-new-issues: true
args: --timeout=5m # 1m is not enough, experimentally.
41 changes: 41 additions & 0 deletions .github/workflows/push-pr-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build

on:
pull_request: {}
release:
types: [ published ]

# Needed to create releases.
permissions:
contents: write

jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
goos: [ linux ]
goarch: [ amd64, arm64 ]
steps:
- uses: actions/checkout@v4
- name: Extract k6 version from go.mod
id: version
run: |-
k6version=$(grep -e go.k6.io go.mod | cut -d' ' -f 2)
echo "Detected k6 version: ${k6version}"
echo "k6=${k6version}" >> $GITHUB_OUTPUT
- name: Build with xk6
run: |-
docker run --rm -i -u "$(id -u):$(id -g)" -v "${PWD}:/xk6" \
-e "GOOS=${{ matrix.goos }}" -e "GOARCH=${{ matrix.goarch }}" \
grafana/xk6 build ${{ steps.version.outputs.k6 }} \
--output "dist/sm-k6-${{ matrix.goos }}-${{ matrix.goarch }}" \
--with sm=.
- name: Upload artifact to release
if: github.event_name == 'release'
env:
GH_TOKEN: ${{ github.token }}
run: |-
gh release upload "${{ github.ref_name }}" dist/* --clobber

0 comments on commit 676ad1b

Please sign in to comment.