Skip to content

Commit

Permalink
Merge pull request #507 from haskell/ddump-timing-CPP
Browse files Browse the repository at this point in the history
Workaround for overwriting of .ddump-timing in tests
  • Loading branch information
Shimuuar authored Oct 14, 2024
2 parents e6660a7 + 76a2468 commit 3322046
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ jobs:
matrix:
include:
# Linux
- { cabal: "3.10", os: ubuntu-latest, ghc: "8.0.2" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "8.2.2" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "8.4.4" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "8.6.5" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "8.8.4" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "8.10.7" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.0.2" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.2.8" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.4.8" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.6.5" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.6.5",
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.0.2" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.2.2" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.4.4" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.6.5" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.8.4" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.10.7" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.0.2" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.2.8" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.4.8" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.6.5" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.6.5",
flags: "-fUnsafeChecks -fInternalChecks" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.8.2" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.8.2" }
# Win
- { cabal: "3.10", os: windows-latest, ghc: "8.4.4" }
# OOM when building tests
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
run: |
sudo apt-get install -y libpapi-dev
echo FLAG_PAPI=-fBenchPAPI >> "$GITHUB_ENV"
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-22.04'
# ----------------
- name: Versions
run: |
Expand Down
1 change: 1 addition & 0 deletions vector/tests/Utilities.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{-# LANGUAGE CPP #-}
{-# LANGUAGE DefaultSignatures #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GADTs #-}
Expand Down
2 changes: 1 addition & 1 deletion vector/vector.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ common tests-common
Tests.Vector.UnitTests
Utilities

default-extensions: CPP,
default-extensions:
ScopedTypeVariables,
PatternGuards,
MultiParamTypeClasses,
Expand Down

0 comments on commit 3322046

Please sign in to comment.