Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
polvalente committed Jul 14, 2024
1 parent 5f7fff0 commit 6237325
Showing 1 changed file with 30 additions and 29 deletions.
59 changes: 30 additions & 29 deletions .github/workflows/precompile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,35 +12,36 @@ concurrency:
cancel-in-progress: true

jobs:
runs-on: macos-14
env:
MIX_ENV: prod
NX_IREE_PREFER_PRECOMPILED: false
strategy:
fail-fast: false
matrix:
NIF_VERSION: "2.16"
OTP_VERSION: "26.0"
ELIXIR_VERSION: "1.17.0"
steps:
- name: checkout
uses: actions/checkout@v4
precompile:
runs-on: macos-14
env:
MIX_ENV: prod
NX_IREE_PREFER_PRECOMPILED: false
strategy:
fail-fast: false
matrix:
NIF_VERSION: ["2.16"]
OTP_VERSION: ["26.0"]
ELIXIR_VERSION: ["1.17.0"]
steps:
- name: checkout
uses: actions/checkout@v4

- name: Install asdf and tools
uses: asdf-vm/actions/install@v3
- name: Install asdf and tools
uses: asdf-vm/actions/install@v3

- name: Setup dependencies
run: |
mix local.hex --force
mix local.rebar --force
- name: Setup dependencies
run: |
mix local.hex --force
mix local.rebar --force
- name: Cache mix dependencies
id: cache-mix-deps
uses: actions/cache@v4
with:
key: deps-${{ hashFiles('mix.lock') }}
path: |
./deps
- name: Get mix deps
if: steps.cache-mix-deps.outputs.cache-hit != 'true'
run: mix deps.get
- name: Cache mix dependencies
id: cache-mix-deps
uses: actions/cache@v4
with:
key: deps-${{ hashFiles('mix.lock') }}
path: |
./deps
- name: Get mix deps
if: steps.cache-mix-deps.outputs.cache-hit != 'true'
run: mix deps.get

0 comments on commit 6237325

Please sign in to comment.