Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Tigron breakout 5: enable lint and tests on the CI #4047

Merged
merged 1 commit into from
Mar 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
go:
timeout-minutes: 5
name: "go | ${{ matrix.goos }} | ${{ matrix.canary }}"
name: "${{ matrix.goos }} | ${{ matrix.canary }}"
runs-on: "${{ matrix.os }}"
defaults:
run:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Set GO env
run: |
# If canary is specified, get the latest available golang pre-release instead of the major version
if [ "$canary" != "" ]; then
if [ "${{ matrix.canary }}" != "" ]; then
. ./hack/build-integration-canary.sh
canary::golang::latest
fi
Expand Down
90 changes: 90 additions & 0 deletions .github/workflows/tigron.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: tigron

on:
push:
branches:
- main
- 'release/**'
pull_request:
paths: 'mod/tigron/**'

env:
GO_VERSION: 1.24.x
GOTOOLCHAIN: local

jobs:
lint:
timeout-minutes: 10
name: "${{ matrix.goos }} ${{ matrix.os }} | go ${{ matrix.canary }}"
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
matrix:
include:
- os: ubuntu-24.04
- os: macos-15
- os: windows-2022
- os: ubuntu-24.04
goos: freebsd
- os: ubuntu-24.04
canary: go-canary
steps:
- name: "Checkout project"
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 100
- name: "Set GO env"
run: |
# If canary is specified, get the latest available golang pre-release instead of the major version
if [ "${{ matrix.canary }}" != "" ]; then
. ./hack/build-integration-canary.sh
canary::golang::latest
fi
- name: "Install go"
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
- name: "Install tools"
run: |
cd mod/tigron
echo "::group:: make install-dev-tools"
make install-dev-tools
if [ "$RUNNER_OS" == macOS ]; then
brew install yamllint shellcheck
fi
echo "::endgroup::"
- name: "lint"
env:
NO_COLOR: true
run: |
if [ "$RUNNER_OS" != "Linux" ] || [ "${{ matrix.goos }}" != "" ]; then
echo "It is not necessary to run the linter on this platform (${{ env.RUNNER_OS }} ${{ matrix.goos }})"
exit
fi

echo "::group:: lint"
cd mod/tigron
export LINT_COMMIT_RANGE="$(jq -r '.after + "..HEAD"' ${GITHUB_EVENT_PATH})"
make lint
echo "::endgroup::"
- name: "test-unit"
run: |
echo "::group:: unit test"
cd mod/tigron
make test-unit
echo "::endgroup::"
- name: "test-unit-race"
run: |
echo "::group:: race test"
cd mod/tigron
make test-unit-race
echo "::endgroup::"
- name: "test-unit-bench"
run: |
echo "::group:: bench"
cd mod/tigron
make test-unit-bench
echo "::endgroup::"