Skip to content

Commit

Permalink
Don't cache data files for cron initiated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wardle committed Mar 20, 2024
1 parent 494c79a commit c8f439d
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 3 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/test-live-uk-cron.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Test-uk-live

on:
schedule:
- cron: '0 14 * * 3'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: DeLaGuardo/setup-clojure@master
with:
cli: latest

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'

- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/deps.edn') }}
restore-keys: ${{ runner.os }}-m2

- name: Install dependencies
run: clojure -P -M:test

- name: Compilation check
run: clojure -M:dev:check

- name: Create TRUD cache directory
run: mkdir trud

- name: Write out TRUD API key from secrets
run: echo ${{ secrets.TRUD_API_KEY }} >> api-key.txt

- name: Install latest distributions for the UK
run: clojure -M:run --db snomed.db install uk.nhs/sct-clinical --api-key api-key.txt --cache-dir trud

- name: Remove downloaded files
run: rm -rf trud

- name: Index database
if: steps.cache-db.outputs.cache-hit != 'true'
run: clojure -M:run --db snomed.db index

- name: Print status report
run: clojure -M:run --db snomed.db status

- name: Clojure tests
run: clojure -M:test
4 changes: 1 addition & 3 deletions .github/workflows/test-live-uk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
pull_request:
push:
branches: [main]
schedule:
- cron: '0 14 * * 3'

jobs:
build:
Expand Down Expand Up @@ -64,4 +62,4 @@ jobs:
run: clojure -M:run --db snomed.db status

- name: Clojure tests
run: clojure -M:test
run: clojure -M:test

0 comments on commit c8f439d

Please sign in to comment.