marked demo/postgres-survive-kill9/ci-smoke.sh as executable in Git, … #69
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: CI | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| packages: write | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go-version: ['1.23'] | |
| platform: [amd64, arm64] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - uses: docker/setup-buildx-action@v3 | |
| id: buildx | |
| - run: make build-ebpf | |
| - run: make build | |
| - run: go test -tags integration -v -timeout 30m ./... | |
| - name: Demo smoke test | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| cd demo/postgres-survive-kill9 | |
| ./ci-smoke.sh |