add github action #69
Workflow file for this run
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: Build and Run Integration Test | ||
on: | ||
push: | ||
branches: | ||
- '3875-get-env-var' | ||
permissions: | ||
id-token: write | ||
contents: read | ||
jobs: | ||
integration-test: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
image: ${{ steps.build-image.outputs.image }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v2 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} | ||
aws-region: eu-west-1 | ||
- name: Login to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/amazon-ecr-login@v1 | ||
- name: Set up Docker Buildx | ||
uses: crazy-max/ghaction-docker-buildx@v3 | ||
- name: Cache Docker layers | ||
uses: actions/cache@v2 | ||
id: cache | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Docker Buildx (build) | ||
id: build-image | ||
env: | ||
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | ||
ECR_REPOSITORY: ${{ github.event.repository.name }} | ||
IMAGE_TAG: ${{ github.sha }} | ||
run: | | ||
docker buildx build \ | ||
--cache-from "type=local,src=/tmp/.buildx-cache" \ | ||
--cache-to "type=local,dest=/tmp/.buildx-cache-new" \ | ||
--load \ | ||
--tag $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG \ | ||
--file ./Dockerfile ./ | ||
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" | ||
- name: Set up configuration | ||
run: | | ||
cp config/database.yml.example config/database.yml | ||
cp config/sidekiq.yml.example config/sidekiq.yml | ||
cp config/config.yml.example config/config.yml | ||
bin/get_env_vars.sh | ||
- name: Run container | ||
id: run-container | ||
run: | | ||
docker-compose -f docker-compose.yml -f docker-test.yml up -d pender | ||
- name: Run PR Tests | ||
id: run-tests | ||
run: | | ||
docker-compose exec pender test/setup-parallel | ||
- name: Run PR Tests | ||
id: run-tests | ||
env: | ||
TEST_RETRY_COUNT: 5 | ||
run: | | ||
docker-compose exec -e TEST_RETRY_COUNT=$TEST_RETRY_COUNT pender bundle exec rake "parallel:test[3]" | ||
docker-compose exec -e TEST_RETRY_COUNT=$TEST_RETRY_COUNT pender bundle exec rake parallel:spec | ||
- name: After PR Tests | ||
id: after-tests | ||
env: | ||
GIT_SHA: ${{ github.sha }} | ||
run: | | ||
docker-compose exec pender cat tmp/performance.csv | ||
docker-compose exec -e CC_TEST_REPORTER_ID=$CC_TEST_REPORTER_ID -e GIT_COMMIT_SHA=$GIT_SHA -e GIT_COMMITTED_AT=$GIT_COMMITTED_AT pender test/test-coverage | ||
- name: Reset cache | ||
id: reset-cache | ||
if: ${{ failure() || success() }} | ||
run: | | ||
rm -rf /tmp/.buildx-cache | ||
mv /tmp/.buildx-cache-new /tmp/.buildx-cache |