Skip to content

Commit

Permalink
reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
stephtr committed Sep 19, 2024
1 parent 0cd11b1 commit 9bdb07e
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/compile-libqalculate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,30 @@ jobs:
- name: Checkout 🛎
uses: actions/checkout@v4

- name: Setup dependency cache
id: cache-dependencies
uses: actions/cache@v2
with:
path: |
~/opt/lib
~/opt/include
key: a${{env.LIBQALCULATE_VERSION}}-gmp${{env.GMP_VERSION}}-mpfr${{env.MPFR_VERSION}}-libxml2${{env.LIBXML2_VERSION}}-em${{env.EM_VERSION}}-${{ runner.os }}

- name: Setup emsdk cache
if: steps.cache-dependencies.outputs.cache-hit != 'true'
id: cache-system-libraries
uses: actions/cache@v2
with:
path: ${{env.EM_CACHE_FOLDER}}
key: ${{env.EM_VERSION}}-${{ runner.os }}

- name: Setup emsdk
if: steps.cache-dependencies.outputs.cache-hit != 'true'
uses: mymindstorm/setup-emsdk@v14
with:
version: ${{env.EM_VERSION}}
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}

- name: Setup dependency cache
id: cache-dependencies
uses: actions/cache@v2
with:
path: |
~/opt/lib
~/opt/include
key: ${{env.LIBQALCULATE_VERSION}}-gmp${{env.GMP_VERSION}}-mpfr${{env.MPFR_VERSION}}-libxml2${{env.LIBXML2_VERSION}}-em${{env.EM_VERSION}}-${{ runner.os }}

- name: Setup dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: |
Expand Down

0 comments on commit 9bdb07e

Please sign in to comment.