Trunk install test workflow #619
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: Trunk install test workflow | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 12 * * *' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/trunk-install-test.yml' | |
jobs: | |
test: | |
name: Run tests | |
runs-on: | |
- self-hosted | |
- dind | |
- large-8x8 | |
container: | |
image: quay.io/tembo/trunk-test-tembo:0.0.31 | |
options: --user root | |
env: | |
PGHOST: "localhost" | |
PGPORT: "5432" | |
PGDATABASE: "postgres" | |
PGUSER: "postgres" | |
PGPASSWORD: "postgres" | |
POSTGRES_PASSWORD: "password" | |
steps: | |
- name: Install all extensions in registry | |
# Entrypoint is overwritten by GitHub Action. We need to execute it manually in order to start Postgres. | |
# More information here https://github.com/actions/runner/issues/1964 | |
run: | | |
su postgres -c '/usr/lib/postgresql/15/bin/postgres &' | |
sleep 5 | |
curl https://registry.pgtrunk.io/extensions/all | jq -r ".[] | .name" > /tmp/extensions.txt | |
trunk-install.sh | tee /tmp/output.txt | |
cat /tmp/output.txt | grep -i -A 1 'SUCCESS RATE' | grep -v 'SUCCESS RATE' > /tmp/results.txt | |
export RES=$(cat /tmp/results.txt) | |
echo "RESULTS=$RES" >> $GITHUB_ENV | |
# - name: Post to a Slack channel | |
# if: ${{ github.ref == 'refs/heads/main' }} | |
# id: slack | |
# uses: slackapi/slack-github-action@v1.24.0 | |
# with: | |
# # Slack channel id, channel name, or user id to post message. | |
# # See also: https://api.slack.com/methods/chat.postMessage#channels | |
# # You can pass in multiple channels to post to by providing a comma-delimited list of channel IDs. | |
# channel-id: 'C05NVR28LA0' | |
# # For posting a simple plain text message | |
# slack-message: "Success rate:\n${{ env.RESULTS }}" | |
# env: | |
# SLACK_BOT_TOKEN: ${{ secrets.TRUNK_INSTALL_SLACK_BOT_TOKEN }} |