-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into monadify-coq-module
- Loading branch information
Showing
85 changed files
with
2,671 additions
and
974 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 |
---|---|---|
|
@@ -68,27 +68,28 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: [ubuntu-22.04, macos-12, windows-latest] | ||
ghc: ["8.8.4", "8.10.7", "9.0.2"] | ||
cabal: ["3.8.1.0"] | ||
ghc: ["8.8.4", "8.10.7", "9.2.7"] | ||
run-tests: [true] | ||
include: | ||
# We include one job from an older Ubuntu LTS release to increase our | ||
# coverage of possible Linux configurations. Since we already run the | ||
# tests with the newest LTS release, we won't bother testing this one. | ||
- os: ubuntu-20.04 | ||
ghc: "8.10.7" | ||
cabal: "3.8.1.0" | ||
run-tests: false | ||
exclude: | ||
# Exclude 8.8 on macOS 12 due to | ||
# https://gitlab.haskell.org/ghc/ghc/-/issues/18446 | ||
- os: macos-12 | ||
ghc: "8.8.4" | ||
cabal: "3.8.1.0" | ||
run-tests: true | ||
- os: windows-latest | ||
ghc: "8.8.4" | ||
cabal: "3.8.1.0" | ||
run-tests: true | ||
# Exclude 9.0 on Windows for now until | ||
# https://github.com/commercialhaskell/stackage/issues/6400 | ||
# is resolved | ||
- os: windows-latest | ||
ghc: "9.0.2" | ||
run-tests: false | ||
outputs: | ||
cabal-test-suites-json: ${{ steps.cabal-test-suites.outputs.targets-json }} | ||
steps: | ||
|
@@ -108,6 +109,7 @@ jobs: | |
id: setup-haskell | ||
with: | ||
ghc-version: ${{ matrix.ghc }} | ||
cabal-version: ${{ matrix.cabal }} | ||
|
||
- name: Post-GHC installation fixups on Windows | ||
shell: bash | ||
|
@@ -122,8 +124,8 @@ jobs: | |
env: | ||
BUILD_TARGET_OS: ${{ matrix.os }} | ||
|
||
- uses: actions/cache@v2 | ||
name: Cache cabal store | ||
- uses: actions/cache/restore@v3 | ||
name: Restore cabal store cache | ||
with: | ||
path: | | ||
${{ steps.setup-haskell.outputs.cabal-store }} | ||
|
@@ -149,7 +151,7 @@ jobs: | |
RELEASE: ${{ needs.config.outputs.release }} | ||
run: .github/ci.sh build_cryptol | ||
|
||
- uses: GaloisInc/.github/actions/cabal-collect-bins@v1 | ||
- uses: GaloisInc/.github/actions/cabal-collect-bins@v1.1.1 | ||
id: cabal-test-suites | ||
with: | ||
targets: | | ||
|
@@ -213,6 +215,16 @@ jobs: | |
path: dist/bin | ||
name: ${{ runner.os }}-bins | ||
|
||
- uses: actions/cache/save@v3 | ||
name: Save cabal store cache | ||
if: always() | ||
with: | ||
path: | | ||
${{ steps.setup-haskell.outputs.cabal-store }} | ||
dist-newstyle | ||
key: ${{ env.CACHE_VERSION }}-cabal-${{ matrix.os }}-${{ matrix.ghc }}-${{ hashFiles(format('cabal.GHC-{0}.config', matrix.ghc)) }}-${{ github.sha }} | ||
${{ env.CACHE_VERSION }}-cabal-${{ matrix.os }}-${{ matrix.ghc }}-${{ hashFiles(format('cabal.GHC-{0}.config', matrix.ghc)) }}- | ||
|
||
mr-solver-tests: | ||
needs: [build] | ||
strategy: | ||
|
@@ -561,9 +573,6 @@ jobs: | |
docker-compose pull | ||
grep -h '^FROM' docker/*.dockerfile | sort -u | awk '{print $2}' | xargs -n1 -P8 docker pull | ||
- uses: satackey/[email protected] | ||
continue-on-error: true | ||
|
||
- shell: bash | ||
name: "make s2n" | ||
working-directory: s2nTests | ||
|
@@ -594,9 +603,6 @@ jobs: | |
name: "${{ runner.os }}-bins" | ||
path: ./exercises/bin | ||
|
||
- uses: satackey/[email protected] | ||
continue-on-error: true | ||
|
||
- shell: bash | ||
name: "make exercises container" | ||
working-directory: exercises | ||
|
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.