From 5537b9331b91f68c935abf85a1ac7550e4715756 Mon Sep 17 00:00:00 2001 From: Jonathan Moallem Date: Thu, 26 Nov 2020 16:53:49 +1100 Subject: [PATCH] Updated macOS and Linux tests to include explicit compiler definition --- .github/workflows/macOS.yml | 6 ++++++ .github/workflows/ubuntu.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index dfdfbaa..3cd5cdd 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -14,7 +14,13 @@ jobs: - uses: actions/checkout@v2 - name: make setup run: make setup + - name: make compile run: make compile + - name: make clean + run: make clean + + - name: make compile CXX=g++ + run: make compile CXX=g++ - name: make clean run: make clean \ No newline at end of file diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index fd7fccb..0c95815 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -18,7 +18,13 @@ jobs: run: sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev - name: make setup run: make setup + - name: make compile run: make compile + - name: make clean + run: make clean + + - name: make compile CXX=g++ + run: make compile CXX=g++ - name: make clean run: make clean \ No newline at end of file