mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-03 11:30:28 -05:00
158 lines
5.3 KiB
YAML
158 lines
5.3 KiB
YAML
name: Check Formatting, Committers and Generated Code
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
concurrency:
|
|
group: ci-check-repo-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
verify:
|
|
name: Verify format and committers
|
|
runs-on: ubuntu-22.04
|
|
outputs:
|
|
format: ${{ steps.should_format.outputs.format }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: Setup Go 1.x
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: go/go.mod
|
|
- name: Check all
|
|
id: should_format
|
|
working-directory: ./go
|
|
# Keep this in sync with //go/utils/prepr/prepr.sh.
|
|
run: |
|
|
GOFLAGS="-mod=readonly" go build ./...
|
|
go vet -mod=readonly ./...
|
|
go run -mod=readonly ./utils/copyrightshdrs/
|
|
./Godeps/verify.sh
|
|
./utils/repofmt/check_bats_fmt.sh
|
|
|
|
if ./utils/repofmt/check_fmt.sh ; then
|
|
echo "code is formatted"
|
|
else
|
|
echo "code is not formatted"
|
|
if [ "${{ github.repository }}" != "dolthub/dolt" ]; then
|
|
echo "Pull requests from forks must be manually formatted."
|
|
echo "Please run dolt/go/utils/repofmt/format_repo.sh to format this pull request."
|
|
exit 1;
|
|
fi
|
|
echo "format=true" >> $GITHUB_OUTPUT
|
|
fi
|
|
env:
|
|
BRANCH_NAME: ${{ github.head_ref }}
|
|
CHANGE_TARGET: ${{ github.base_ref }}
|
|
- name: Check generated protobufs and flatbuffers
|
|
working-directory: ./proto
|
|
run: |
|
|
bazel run //:update
|
|
changes=$(git status --porcelain)
|
|
diff=$(git diff)
|
|
if [ ! -z "$changes" ]; then
|
|
echo "ERROR: Generated protobuf structs and/or flatbuffer messages are different from the checked in version."
|
|
echo "$changes"
|
|
echo "$diff"
|
|
exit 1
|
|
fi
|
|
get-artifacts:
|
|
needs: verify
|
|
if: ${{ needs.verify.outputs.format == 'true' }}
|
|
name: Get artifacts
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: "main"
|
|
repository: "dolthub/dolt"
|
|
submodules: true
|
|
- name: Setup Go 1.x
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: go/go.mod
|
|
- name: Copy script
|
|
working-directory: ./go/utils/repofmt
|
|
run: cp format_repo.sh _format_repo.sh
|
|
- name: Build go deps tool
|
|
working-directory: go/utils/3pdeps
|
|
run: go build .
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: update-godeps-tool
|
|
path: go/utils/3pdeps/3pdeps
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: format-code-script
|
|
path: go/utils/repofmt/_format_repo.sh
|
|
format:
|
|
needs: [verify, get-artifacts]
|
|
if: ${{ needs.verify.outputs.format == 'true' }}
|
|
name: Format PR
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.ref || github.ref }}
|
|
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
|
|
submodules: true
|
|
token: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
|
|
- name: Setup Go 1.x
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: go/go.mod
|
|
- name: Run go mod tidy
|
|
run: go mod tidy
|
|
working-directory: ./go
|
|
- name: Install goimports
|
|
run: go install golang.org/x/tools/cmd/goimports@latest
|
|
- uses: actions/download-artifact@v4
|
|
with:
|
|
name: format-code-script
|
|
path: go/utils/repofmt
|
|
- uses: actions/download-artifact@v4
|
|
with:
|
|
name: update-godeps-tool
|
|
path: go
|
|
- name: Format repo
|
|
working-directory: ./go
|
|
run: |
|
|
chmod +x ./utils/repofmt/_format_repo.sh
|
|
./utils/repofmt/_format_repo.sh
|
|
env:
|
|
BRANCH_NAME: ${{ github.head_ref }}
|
|
CHANGE_TARGET: ${{ github.base_ref }}
|
|
- name: Update Go deps
|
|
working-directory: ./go
|
|
run: |
|
|
chmod +x ./3pdeps
|
|
( GOOS=linux GOARCH=amd64 go list -deps -json ./cmd/dolt/. && \
|
|
GOOS=linux GOARCH=386 go list -deps -json ./cmd/dolt/. && \
|
|
GOOS=linux GOARCH=arm64 go list -deps -json ./cmd/dolt/. && \
|
|
GOOS=windows GOARCH=amd64 go list -deps -json ./cmd/dolt/. && \
|
|
GOOS=windows GOARCH=arm64 go list -deps -json ./cmd/dolt/. && \
|
|
GOOS=darwin GOARCH=amd64 go list -deps -json ./cmd/dolt/. && \
|
|
GOOS=darwin GOARCH=arm64 go list -deps -json ./cmd/dolt/. ) \
|
|
| ./3pdeps > ./Godeps/LICENSES
|
|
- name: Remove artifacts
|
|
run: |
|
|
rm go/3pdeps
|
|
rm go/utils/repofmt/_format_repo.sh
|
|
- name: Changes detected
|
|
id: detect-changes
|
|
run: |
|
|
changes=$(git status --porcelain)
|
|
if [ ! -z "$changes" ]; then
|
|
echo "has-changes=true" >> $GITHUB_OUTPUT
|
|
fi
|
|
- uses: EndBug/add-and-commit@v9.1.4
|
|
if: ${{ steps.detect-changes.outputs.has-changes == 'true' }}
|
|
with:
|
|
message: "[ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh"
|
|
add: "."
|
|
cwd: "."
|
|
pull: "--ff"
|