This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
Merge pull request #116 from newrelic/archive-notice #1037
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 | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.4 | |
bundler-cache: true | |
- name: Lint | |
# Remove this line to allow this job to prevent PRs from merging | |
continue-on-error: true | |
run: bundle exec rubocop | |
test-unit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.4 | |
bundler-cache: true | |
- name: Unit Tests | |
run: bundle exec rake test:unit | |
test-integration: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.4 | |
bundler-cache: true | |
- name: Generate Default SSH Keypair | |
run: ssh-keygen -m PEM -t rsa -b 4096 -f $HOME/.ssh/id_rsa -q -N "" | |
- name: Write AWS Certificate to File | |
env: | |
AWS_PEM: ${{ secrets.UAT_AWS_PEM_FILE }} | |
run: | | |
rm -f $GITHUB_WORKSPACE/configs/uat-ca.pem | |
echo "$AWS_PEM" > $GITHUB_WORKSPACE/configs/uat-ca.pem | |
sudo chmod 400 $GITHUB_WORKSPACE/configs/uat-ca.pem | |
sudo chmod 400 user_acceptance_tests/secret_file.pem | |
- name: Write UAT JSON to file | |
env: | |
UAT_JSON: ${{ secrets.UAT_USER_AWS }} | |
run: | | |
echo "$UAT_JSON" > user_acceptance_tests/uatuser.json.local | |
- name: Integration Tests | |
run: bundle exec rake test:uat:integration | |
slack-notify: | |
runs-on: ubuntu-latest | |
needs: [lint, test-unit, test-integration] | |
if: always() && github.event_name == 'push' | |
steps: | |
- name: Build Result Slack Notification | |
uses: 8398a7/action-slack@v3 | |
with: | |
author_name: GitHub Actions | |
status: custom | |
fields: commit,repo,ref,author,eventName,message,workflow | |
custom_payload: | | |
{ | |
username: "GitHub Actions", | |
icon_emoji: ":octocat:", | |
attachments: [{ | |
color: ${{ | |
needs.lint.result == 'success' && | |
needs.test-unit.result == 'success' && | |
needs.test-integration.result == 'success' | |
}} === true ? '#43cc11' : '#e05d44', | |
blocks: [ | |
{ | |
type: "section", | |
text: { | |
type: "mrkdwn", | |
text: `Build for ${process.env.AS_REPO}` | |
} | |
}, | |
{ | |
type: "section", | |
fields: [ | |
{ | |
type: "mrkdwn", | |
text: `*Commit:*\n${process.env.AS_COMMIT}` | |
}, | |
{ | |
type: "mrkdwn", | |
text: `*Author:*\n${process.env.AS_AUTHOR}` | |
}, | |
{ | |
type: "mrkdwn", | |
text: `*Branch:*\n${process.env.AS_REF}` | |
}, | |
{ | |
type: "mrkdwn", | |
text: `*Message:*\n${process.env.AS_MESSAGE}` | |
}, | |
{ | |
type: "mrkdwn", | |
text: `*Type:*\n${process.env.AS_EVENT_NAME}` | |
}, | |
{ | |
type: "mrkdwn", | |
text: "*PR:*\n${{ github.event.pull_request.html_url }}" | |
}, | |
{ | |
type: "mrkdwn", | |
text: `*Workflow:*\n${ process.env.AS_WORKFLOW }` | |
} | |
] | |
}, | |
{ | |
type: "section", | |
text: { | |
type: "mrkdwn", | |
text: [ | |
"*Result:*", | |
`• ${ ${{ needs.lint.result == 'success' }} === true ? '✅' : '❌' } Lint: ${{ needs.lint.result }}`, | |
`• ${ ${{ needs.test-unit.result == 'success' }} === true ? '✅' : '❌' } Unit test: ${{ needs.test-unit.result }}`, | |
`• ${ ${{ needs.test-integration.result == 'success' }} === true ? '✅' : '❌' } Integration test: ${{ needs.test-integration.result }}` | |
].join('\n') | |
} | |
}, | |
{ | |
type: "context", | |
elements: [ | |
{ | |
type: "image", | |
image_url: "https://avatars2.githubusercontent.com/in/15368", | |
alt_text: "Github Actions" | |
}, | |
{ | |
type: "mrkdwn", | |
text: "This message was created automatically by GitHub Actions." | |
} | |
] | |
} | |
] | |
}] | |
} | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | |