-
Notifications
You must be signed in to change notification settings - Fork 9
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
ghc-9.12.1-release #575
Merged
Merged
ghc-9.12.1-release #575
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: ghc-lib-ghc-9.12.1-ghc-9.10.1 | ||
on: | ||
push: | ||
pull_request: | ||
jobs: | ||
runhaskell: | ||
name: ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }}-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu, macos, windows] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: haskell-actions/setup@v2 | ||
id: setup-haskell | ||
with: | ||
ghc-version: 9.10.1 | ||
cabal-version: 'latest' | ||
- name: Install build tools (macOS) | ||
run: brew install automake | ||
if: matrix.os == 'macos' | ||
- 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' | ||
- 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.12.1 | ||
if: matrix.os == 'windows' | ||
- name: Run CI.hs (unix) | ||
shell: bash | ||
run: cabal run exe:ghc-lib-build-tool -- --ghc-flavor ghc-9.12.1 | ||
if: matrix.os == 'ubuntu' || matrix.os == 'macos' |
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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason we use
bfacc086604c18e30758772a05a8c81e3a4e01bc
instead of https://gitlab.haskell.org/ghc/ghc/-/commit/daf659b6e3c8f2a84100fbee797cd9d457c00df5 from https://gitlab.haskell.org/ghc/ghc/-/tags/ghc-9.12.1-release ? Is it a question of what's furthest along on master?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i tend to put here whatever the prevailing up to the minute SHA (https://gitlab.haskell.org/ghc/ghc/-/commits/master) is on the day that i prepare the PR.