From 0b54829376699a4172e7184677875f1fee82d838 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Muska=C5=82a?= Date: Sun, 16 Oct 2022 22:03:45 +0100 Subject: [PATCH] Try another way to fix CI --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e65d230..75dd12e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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