From 5453edeaa791b32bcf8a67b9584a0ec06b07c6b3 Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Tue, 20 Aug 2024 10:50:47 -0400 Subject: [PATCH] ci: Remove conditional in build/test of x86-symbolic We only run CI on Linux, no need for this conditional. --- .github/workflows/ci.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 44a900b0..f3f08104 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -107,16 +107,15 @@ jobs: - name: Test macaw-x86 run: cabal test pkg:macaw-x86 + - name: Test macaw-x86-symbolic + run: cabal test pkg:macaw-x86-symbolic + - name: Build macaw-x86-syntax run: cabal build pkg:macaw-x86-syntax - name: Test macaw-x86-syntax run: cabal test pkg:macaw-x86-syntax - - name: Test macaw-x86-symbolic - if: runner.os == 'Linux' - run: cabal test pkg:macaw-x86-symbolic - - name: Build macaw-aarch32 run: cabal build pkg:macaw-aarch32 pkg:macaw-aarch32-symbolic - name: Test macaw-aarch32