forked from digital-asset/ghc-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
module dependency analysis improvements (digital-asset#543)
* simplify ghc -M, add new tests * Update ghc-lib-gen.cabal Co-authored-by: Samuel Williams <[email protected]> --------- Co-authored-by: Samuel Williams <[email protected]>
- Loading branch information
1 parent
73e1ea4
commit e598618
Showing
18 changed files
with
329 additions
and
410 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: ghc-lib-ghc-9.0.2-ghc-8.10.7 | ||
on: | ||
push: | ||
pull_request: | ||
jobs: | ||
runhaskell: | ||
name: ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, macos-13, windows-latest] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: haskell-actions/setup@v2 | ||
id: setup-haskell | ||
with: | ||
ghc-version: 8.10.7 | ||
cabal-version: 'latest' | ||
- name: Install build tools (macOS) | ||
run: brew install automake | ||
if: matrix.os == 'macos-13' | ||
- name: Configure msys2 (windows) | ||
shell: bash | ||
run: |- | ||
echo "MSYSTEM=CLANG64" >> $GITHUB_ENV | ||
echo "/c/mingw64/usr/bin" >> $GITHUB_PATH | ||
echo "/c/msys64/usr/bin" >> $GITHUB_PATH | ||
if: matrix.os == 'windows-latest' | ||
- name: Run CI.hs (windows) | ||
shell: C:\msys64\usr\bin\bash.exe --noprofile --norc -e -o pipefail '{0}' | ||
run: |- | ||
pacman -S autoconf automake-wrapper make patch python tar mintty --noconfirm | ||
cabal run exe:ghc-lib-build-tool --constraint=any."happy==1.19.12" --constraint="any.alex==3.2.7.3" -- --ghc-flavor ghc-9.0.2 | ||
if: matrix.os == 'windows-latest' | ||
- name: Run CI.hs (unix) | ||
shell: bash | ||
run: cabal run exe:ghc-lib-build-tool --constraint="any.happy==1.19.12" --constraint="any.alex==3.2.7.3" -- --ghc-flavor ghc-9.0.2 | ||
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-13' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: ghc-lib-ghc-9.4.8-ghc-9.0.2 | ||
on: | ||
push: | ||
pull_request: | ||
jobs: | ||
runhaskell: | ||
name: ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, macos-13, windows-latest] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: haskell-actions/setup@v2 | ||
id: setup-haskell | ||
with: | ||
ghc-version: 9.0.2 | ||
cabal-version: 'latest' | ||
- name: Install build tools (macOS) | ||
run: brew install automake | ||
if: matrix.os == 'macos-13' | ||
- name: Configure msys2 (windows) | ||
shell: bash | ||
run: |- | ||
echo "MSYSTEM=CLANG64" >> $GITHUB_ENV | ||
echo "/c/mingw64/usr/bin" >> $GITHUB_PATH | ||
echo "/c/msys64/usr/bin" >> $GITHUB_PATH | ||
if: matrix.os == 'windows-latest' | ||
- name: Run CI.hs (windows) | ||
shell: C:\msys64\usr\bin\bash.exe --noprofile --norc -e -o pipefail '{0}' | ||
run: |- | ||
pacman -S autoconf automake-wrapper make patch python tar mintty --noconfirm | ||
cabal run exe:ghc-lib-build-tool -- --ghc-flavor ghc-9.4.8 | ||
if: matrix.os == 'windows-latest' | ||
- name: Run CI.hs (unix) | ||
shell: bash | ||
run: cabal run exe:ghc-lib-build-tool -- --ghc-flavor ghc-9.4.8 | ||
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-13' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.