From 292e6038100b151d4078e88a94e3b1b4b26796e7 Mon Sep 17 00:00:00 2001 From: Tom Schammo <44942510+TomSchammo@users.noreply.github.com> Date: Wed, 3 Jan 2024 18:27:48 +0100 Subject: [PATCH] build(CI/CD): Switch to GCC Switch compiler to GCC, since there seems to be some issue building it on GitHub with does not exist locally. Testing if this might be due to a compiler issue. --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 92e18e1..e916ee1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,6 +6,10 @@ jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + compiler: [gcc] + steps: - name: Checkout repository uses: actions/checkout@v2