Merge gpbackup-s3-plugin-archive into plugins/s3plugin directory #53
This file contains hidden or 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: build_and_unit_test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| types: [ opened, synchronize, reopened, edited, ready_for_review ] | |
| workflow_dispatch: | |
| jobs: | |
| build_and_unit_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| path: go/src/github.com/apache/cloudberry-backup | |
| - name: Set up Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: 1.17 | |
| - name: Set Environment | |
| run: | | |
| echo "GOPATH=/home/runner/work/gpbackup/gpbackup/go" >> $GITHUB_ENV | |
| echo "/home/runner/work/gpbackup/gpbackup/go/bin" >> $GITHUB_PATH | |
| - name: Dependencies | |
| run: | | |
| cd ${GOPATH}/src/github.com/apache/cloudberry-backup | |
| make depend | |
| - name: Build | |
| run: | | |
| cd ${GOPATH}/src/github.com/apache/cloudberry-backup | |
| make build | |
| - name: Unit Test | |
| run: | | |
| cd ${GOPATH}/src/github.com/apache/cloudberry-backup | |
| make unit_all_gpdb_versions |