Skip to content

Commit

Permalink
autocommit
Browse files Browse the repository at this point in the history
  • Loading branch information
ablack3 committed Jan 5, 2024
1 parent 89c38cb commit eb53d3c
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/TestCDMConnector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,15 @@ jobs:
- uses: actions/checkout@v2

- name: Cache Docker image layers
id: cache
id: cache-docker
uses: actions/cache@v2
with:
path: |
/var/lib/docker
key: ${{ runner.os }}-executionengine.azurecr.io/darwin-base:v0.1

# - name: print results of cache step
# run: cat {{ steps.cache.outputs }}

- name: pull docker image
- if: ${{ steps.cache-docker.outputs.cache-hit != 'true' }}
name: pull docker image
run: docker pull executionengine.azurecr.io/darwin-base:v0.1

- name: Run postgres test
Expand All @@ -41,7 +39,6 @@ jobs:
-e DBMS_PASSWORD=${{ secrets.POSTGRESQL_PASSWORD }} \
-e CDM_SCHEMA=${{ secrets.POSTGRESQL_CDM_SCHEMA }} \
-e WRITE_SCHEMA=${{ secrets.POSTGRESQL_SCRATCH_SCHEMA }} \
-p 80:80 \
-v $(pwd)/TestCDMConnector:/tmp/TestCDMConnector \
executionengine.azurecr.io/darwin-base:v0.1 \
R -e 'setwd("/tmp/TestCDMConnector"); source("main.R")'
Expand All @@ -59,7 +56,6 @@ jobs:
-e DBMS_PASSWORD=${{ secrets.SNOWFLAKE_PASSWORD }} \
-e CDM_SCHEMA=${{ secrets.SNOWFLAKE_CDM_SCHEMA }} \
-e WRITE_SCHEMA=${{ secrets.SNOWFLAKE_SCRATCH_SCHEMA }} \
-p 80:80 \
-v $(pwd)/TestCDMConnector:/tmp/TestCDMConnector \
executionengine.azurecr.io/darwin-base:v0.1 \
R -e 'setwd("/tmp/TestCDMConnector"); source("main.R")'

0 comments on commit eb53d3c

Please sign in to comment.