Skip to content

Commit

Permalink
Add GH action workflow for integration tests (#46)
Browse files Browse the repository at this point in the history
* Add GH action workflow for integration tests

* Update Dockerfile

---------

Co-authored-by: Hara Prasad <haraprasadj@uchicago.edu>
  • Loading branch information
krishnaa05 and haraprasadj authored Aug 7, 2024
1 parent 41621f9 commit fead6db
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 15 deletions.
2 changes: 0 additions & 2 deletions .github/labeler.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Integration Tests

on: pull_request

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
integration_tests:
name: Integration tests
uses: uc-cdis/.github/.github/workflows/integration_tests.yaml@master
with:
SERVICE_TO_TEST: sower
secrets:
CI_AWS_ACCESS_KEY_ID: ${{ secrets.CI_AWS_ACCESS_KEY_ID }}
CI_AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_AWS_SECRET_ACCESS_KEY }}
JENKINS_API_TOKEN: ${{ secrets.JENKINS_API_TOKEN }}
QA_DASHBOARD_S3_PATH: ${{ secrets.QA_DASHBOARD_S3_PATH }}
CI_TEST_ORCID_USERID: ${{ secrets.CI_TEST_ORCID_USERID }}
CI_TEST_ORCID_PASSWORD: ${{ secrets.CI_TEST_ORCID_PASSWORD }}
CI_TEST_RAS_USERID: ${{ secrets.CI_TEST_RAS_USERID }}
CI_TEST_RAS_PASSWORD: ${{ secrets.CI_TEST_RAS_PASSWORD }}
CI_SLACK_BOT_TOKEN: ${{ secrets.CI_SLACK_BOT_TOKEN }}
CI_SLACK_CHANNEL_ID: ${{ secrets.CI_SLACK_CHANNEL_ID }}
12 changes: 0 additions & 12 deletions .github/workflows/labeler.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/cdis/golang:1.18-bullseye as build-deps
FROM quay.io/cdis/golang:1.18-bullseye AS build-deps

ENV CGO_ENABLED=0
ENV GOOS=linux
Expand Down

0 comments on commit fead6db

Please sign in to comment.