[dep][go](deps): Bump github.com/hashicorp/go-plugin from 1.6.1 to 1.6.2 #8355
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: Steampipe Acceptance Tests | |
on: | |
pull_request: | |
env: | |
STEAMPIPE_UPDATE_CHECK: false | |
SPIPETOOLS_PG_CONN_STRING: ${{ secrets.SPIPETOOLS_PG_CONN_STRING }} | |
SPIPETOOLS_TOKEN: ${{ secrets.SPIPETOOLS_TOKEN }} | |
GH_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | |
STEAMPIPE_LOG: info | |
jobs: | |
goreleaser: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: steampipe | |
- name: Checkout Pipe Fittings Components repository | |
uses: actions/checkout@v4 | |
with: | |
repository: turbot/pipe-fittings | |
path: pipe-fittings | |
ref: v1.6.x | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Fetching Go Cache Paths | |
id: go-cache-paths | |
run: | | |
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT | |
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT | |
# used to speedup go test | |
- name: Go Build Cache | |
id: build-cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.go-cache-paths.outputs.go-build }} | |
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} | |
# TODO fix this step (cant find the path to golangci.yml) | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
continue-on-error: true # we dont want to enforce just yet | |
with: | |
version: v1.52.2 | |
args: --timeout=15m --config=.golangci.yml | |
skip-pkg-cache: true | |
skip-build-cache: true | |
- name: Run CLI Unit Tests | |
run: | | |
cd steampipe | |
go clean -testcache | |
go test -timeout 30s ./... -test.v | |
- name: Install GoReleaser | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
install-only: true | |
- name: Run GoReleaser | |
run: | | |
cd steampipe | |
goreleaser release --clean --snapshot --parallelism 2 --config=.acceptance.goreleaser.yml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Move build artifacts | |
run: | | |
mkdir ~/artifacts | |
mv $GITHUB_WORKSPACE/steampipe/dist/steampipe_linux_amd64.tar.gz ~/artifacts/linux.tar.gz | |
mv $GITHUB_WORKSPACE/steampipe/dist/steampipe_darwin_amd64.zip ~/artifacts/darwin.zip | |
- name: List Build Artifacts | |
run: ls -l ~/artifacts | |
- name: Save Linux Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artifact-linux | |
path: ~/artifacts/linux.tar.gz | |
if-no-files-found: error | |
overwrite: true | |
- name: Save MacOS Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artifact-darwin | |
path: ~/artifacts/darwin.zip | |
if-no-files-found: error | |
overwrite: true | |
acceptance_test: | |
name: Test | |
needs: goreleaser | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ubuntu-latest] | |
test_block: | |
- "migration" | |
- "brew" | |
- "installation" | |
- "plugin" | |
- "connection_config" | |
- "service" | |
- "settings" | |
- "ssl" | |
- "blank_aggregators" | |
- "search_path" | |
- "chaos_and_query" | |
- "dynamic_schema" | |
- "dynamic_aggregators" | |
- "cache" | |
- "performance" | |
- "config_precedence" | |
- "cloud" | |
- "snapshot" | |
- "schema_cloning" | |
- "exit_codes" | |
- "force_stop" | |
exclude: | |
- platform: macos-latest | |
test_block: migration | |
- platform: macos-latest | |
test_block: force_stop | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Prepare for downloads | |
id: prepare-for-downloads | |
run: | | |
mkdir ~/artifacts | |
- name: Download Linux Build Artifacts | |
uses: actions/download-artifact@v4 | |
if: ${{ matrix.platform == 'ubuntu-latest' }} | |
with: | |
name: build-artifact-linux | |
path: ~/artifacts | |
- name: Download Darwin Build Artifacts | |
uses: actions/download-artifact@v4 | |
if: ${{ matrix.platform == 'macos-latest' }} | |
with: | |
name: build-artifact-darwin | |
path: ~/artifacts | |
- name: Extract Darwin Artifacts and Install Binary | |
if: ${{ matrix.platform == 'macos-latest' }} | |
run: | | |
mkdir ~/build | |
unzip ~/artifacts/darwin.zip -d ~/build | |
- name: Extract Ubuntu Artifacts and Install Binary | |
if: ${{ matrix.platform == 'ubuntu-latest' }} | |
run: | | |
mkdir ~/build | |
tar -xf ~/artifacts/linux.tar.gz -C ~/build | |
- name: Set PATH | |
run: | | |
echo "PATH=$PATH:$HOME/build:$GTIHUB_WORKSPACE/tests/acceptance/lib/bats-core/libexec" >> $GITHUB_ENV | |
- name: Go install jd | |
run: | | |
go install github.com/josephburnett/jd@latest | |
- name: Install DB | |
id: install-db | |
continue-on-error: false | |
run: | | |
steampipe query "select 1" | |
steampipe plugin install chaos chaosdynamic --progress=false | |
- name: Save Install DB Logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: install-db-logs-${{ matrix.test_block }}-${{ matrix.platform }} | |
path: ~/.steampipe/logs | |
if-no-files-found: error | |
- name: Run Test Suite | |
id: run-test-suite | |
timeout-minutes: 15 | |
continue-on-error: true | |
run: | | |
chmod +x $GITHUB_WORKSPACE/tests/acceptance/run.sh | |
$GITHUB_WORKSPACE/tests/acceptance/run.sh ${{ matrix.test_block }}.bats | |
echo "exit_code=$(echo $?)" >> $GITHUB_OUTPUT | |
echo ">> here" | |
- name: Save Test Suite Logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-logs-${{ matrix.test_block }}-${{ matrix.platform }} | |
path: ~/.steampipe/logs | |
if-no-files-found: error | |
# This job checks whether the test suite has passed or not. | |
# Since the exit_code is set only when the bats test suite pass, | |
# we have added the if-conditional block | |
- name: Check Test Passed/Failed | |
if: ${{ success() }} | |
continue-on-error: false | |
run: | | |
if [ ${{ steps.run-test-suite.outputs.exit_code }} -eq 0 ]; then | |
exit 0 | |
else | |
exit 1 | |
fi | |
clean_up: | |
# let's clean up the artifacts. | |
# incase this step isn't reached, | |
# artifacts automatically expire after 90 days anyway | |
# refer: | |
# https://docs.github.com/en/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts#downloading-and-deleting-artifacts-after-a-workflow-run-is-complete | |
name: Clean Up Artifacts | |
needs: acceptance_test | |
if: ${{ needs.acceptance_test.result == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clean up Linux Build | |
uses: geekyeggo/delete-artifact@v5 | |
with: | |
name: build-artifact-linux | |
failOnError: true | |
- name: Clean up Darwin Build | |
uses: geekyeggo/delete-artifact@v5 | |
with: | |
name: build-artifact-darwin | |
failOnError: true |