Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround for overwriting of .ddump-timing in tests #507

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading