YQL Parser Generation using ANTLR4 #5146
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check-codegen | |
on: | |
push: | |
branches: | |
- master | |
- release-* | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
concurrency: | |
group: codegen-${{ github.ref }}-${{ matrix.os }}-${{ matrix.go-version }} | |
cancel-in-progress: true | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
go-version: [1.23.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Go Env | |
run: | | |
go env | |
- name: Build | |
run: | | |
go install ./internal/cmd/gtrace | |
go install ./internal/cmd/gstack | |
go install go.uber.org/mock/[email protected] | |
- name: Clean and re-generate *_gtrace.go files | |
run: | | |
rm -f ./trace/*_gtrace.go | |
go generate ./trace | |
go generate ./... | |
- name: Re-generate stack.FunctionID calls | |
run: | | |
gstack . | |
- name: Check repository diff | |
run: bash ./.github/scripts/check-work-copy-equals-to-committed.sh "code-generation not equal with committed" | |
parser-check: | |
concurrency: | |
group: parser-check-${{ github.ref }}-${{ matrix.os }}-${{ matrix.go-version }} | |
cancel-in-progress: true | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
go-version: [1.23.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Build Docker image (ANTLR) | |
working-directory: parser | |
run: | | |
make build-image | |
- name: Make clean | |
working-directory: parser | |
run: | | |
make clean | |
- name: Generate YQL & SQL Parser (ANTLR) | |
working-directory: parser | |
run: | | |
make all | |
- name: Check repository diff | |
run: | | |
git diff --exit-code --quiet \ | |
|| (echo "YQL Parser code-generation not equal with committed" && exit 1) | |