Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update burrito #367

Merged
merged 9 commits into from
Feb 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! chore: update burrito
  • Loading branch information
mhanberg committed Feb 2, 2024
commit 96ee0a6dbee2a656abfc8998d0cdc354a283700b
35 changes: 35 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,41 @@ jobs:
- name: Run dialyzer
run: mix dialyzer --format github

release-test:
runs-on: ${{matrix.os.name}}
name: Release Test (${{matrix.os.name}})

strategy:
matrix:
os:
- name: ubuntu-latest
target: linux_amd64
- name: macos-14
target: darwin_arm64
- name: macos-13
target: darwin_amd64

steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- uses: actions/cache@v4
with:
path: |
deps
_build/prod
key: ${{ matrix.os.name }}-mix-prod-${{ hashFiles('**/.mise.toml') }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ matrix.os.name }}-mix-prod-${{ hashFiles('**/.mise.toml') }}-

- name: Install Dependencies
run: mix deps.get --only prod

- name: Release
env:
MIX_ENV: prod
BURRITO_TARGET: ${{ matrix.os.target }}
run: mix release

nix-build:
strategy:
matrix:
Expand Down
Loading