Merge pull request #229 from couchbase/AV-82442_FreeTier-Go2.6 #357
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: Test Code Samples (GA) | |
on: | |
push: | |
branches: [ "release/2.*" ] | |
pull_request: | |
branches: [ "release/2.*" ] | |
jobs: | |
pre_job: | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@master | |
with: | |
cancel_others: 'true' # cancel previous workflow runs when pushing a new commit. | |
paths: '["**/Makefile", "modules/test/**", "**/*.go", "**/*.mod", "**/*.sum"]' | |
test: | |
needs: pre_job | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
runs-on: ubuntu-latest | |
env: | |
working-directory: | |
./modules | |
steps: | |
- name: Checkout actions | |
uses: actions/checkout@v2 | |
- name: Build Couchbase Docker image | |
run: make cb-build | |
working-directory: ${{ env.working-directory }} | |
- name: Run Couchbase Server+SDK container | |
run: make cb-start | |
working-directory: ${{ env.working-directory }} | |
- name: Test code samples | |
run: make tests | |
working-directory: ${{ env.working-directory }} | |
- name: Cleanup | |
run: make cb-stop | |
working-directory: ${{ env.working-directory }} | |
- name: Notify slack on failure | |
# We run this step only on the default 2.2+ branch | |
# because secrets are not accessible on PRs from forks. | |
# Therefore, this notification will only happen when a PR is merged. | |
if: failure() && startsWith(github.ref, 'refs/heads/release/2.*') | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ job.status }} | |
author_name: ":octocat: Go SDK Automation Failure" | |
text: ":no_entry: Oh noes! The commit has broken the build...please verify :paddlin:" | |
fields: repo,workflow,job,commit,author | |
mention: here | |
if_mention: failure | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |