Skip to content

Commit

Permalink
Try another way to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
michalmuskala committed Jul 7, 2023
1 parent e00b39a commit 0b54829
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ jobs:
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Sets env vars to disable jason_native on ubuntu-18.4
run: |
echo "NO_JASON_NATIVE=1" >> $GITHUB_ENV
if: ${{runner.name}} == 'ubuntu-18.04'
- name: Install Dependencies
run: |
mix local.hex --force
Expand All @@ -78,7 +74,13 @@ jobs:
key: ${{ matrix.otp }}-${{ matrix.elixir }}-build
- run: mix compile --warnings-as-errors
if: matrix.warnings_as_errors
env:
CC: gcc-10
CXX: g++-10
- run: mix test
env:
CC: gcc-10
CXX: g++-10
dialyzer:
name: mix dialyzer
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0b54829

Please sign in to comment.