Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
elopez committed Mar 4, 2025
1 parent 5c705c9 commit bbd0d83
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
shell: bash
container: "{\"image\": \"elopeztob/alpine-haskell-stack-echidna:ghc-9.6.5\", \"options\": \"--user 1001\"}"
- os: macos-13 # x86_64 macOS
shell: bash
- os: windows-latest
shell: msys2 {0}

Expand Down Expand Up @@ -72,6 +67,8 @@ jobs:
run: |
HOME="${{ (runner.os == 'Windows' && '$(cygpath -m ~)') || '$HOME' }}"
GHC_MINGW_PATH="${{ (runner.os == 'Windows' && '$(cygpath -m "$GHC_BIN_PATH/../mingw")') || '' }}"
echo | $GHC_MINGW_PATH/bin/clang.exe -I"$GHC_MINGW_PATH/x86_64-w64-mingw32/include" -I"$GHC_MINGW_PATH/include" -I"D:/a/_temp/msys64/clang64/include" -Wp,-v -E -
mkdir -p "$STACK_ROOT"
{ echo "extra-include-dirs:";
echo "- $HOME/.local/include";
Expand All @@ -86,7 +83,7 @@ jobs:
echo;
echo "ghc-options:";
echo ' "$locals": -Werror'
"$REPLACE_LINKER_WIN" && echo ' "$everything": -pgml='$(cygpath -m "$GHC_MINGW_PATH/bin/clang.exe") -I"$GHC_MINGW_PATH/x86_64-w64-mingw32/include" -I"$GHC_MINGW_PATH/include" -I"D:/a/_temp/msys64/clang64/include";
"$REPLACE_LINKER_WIN" && echo ' "$everything": -v3 -pgml='$(cygpath -m "$GHC_MINGW_PATH/bin/clang.exe") -I"$GHC_MINGW_PATH/x86_64-w64-mingw32/include" -I"$GHC_MINGW_PATH/include" -I"D:/a/_temp/msys64/clang64/include";
echo;
"$SKIP_MSYS" && echo "skip-msys: true" || true
echo "system-ghc: true";
Expand Down Expand Up @@ -151,7 +148,7 @@ jobs:
- name: Build Dependencies
run: |
export PATH="$HASKELL_PATHS:$PATH"
stack build --ghc-options="-Werror" --only-dependencies
stack build --ghc-options="-Werror" --only-dependencies --cabal-verbose
- name: Build and install echidna
run: |
Expand Down

0 comments on commit bbd0d83

Please sign in to comment.