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

Bump 510 workflows to the 5.1.0 release #398

Merged
merged 4 commits into from
Sep 21, 2023
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
4 changes: 2 additions & 2 deletions .github/workflows/cygwin-510.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
uses: ./.github/workflows/common.yml
with:
runs_on: windows-latest
compiler: ocaml-variants.5.1.0~rc3+options+win
compiler: ocaml-variants.5.1.0+options+win
cygwin: true
timeout: 360
dune_alias: 'ci1'
Expand All @@ -18,7 +18,7 @@ jobs:
uses: ./.github/workflows/common.yml
with:
runs_on: windows-latest
compiler: ocaml-variants.5.1.0~rc3+options+win
compiler: ocaml-variants.5.1.0+options+win
cygwin: true
timeout: 360
dune_alias: 'ci2'
2 changes: 1 addition & 1 deletion .github/workflows/linux-510-32bit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ jobs:
build:
uses: ./.github/workflows/common.yml
with:
compiler: 'ocaml-variants.5.1.0~rc3+options,ocaml-option-32bit'
compiler: 'ocaml-variants.5.1.0+options,ocaml-option-32bit'
timeout: 240
2 changes: 1 addition & 1 deletion .github/workflows/linux-510-bytecode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ jobs:
build:
uses: ./.github/workflows/common.yml
with:
compiler: 'ocaml-variants.5.1.0~rc3+options,ocaml-option-bytecode-only'
compiler: 'ocaml-variants.5.1.0+options,ocaml-option-bytecode-only'
timeout: 240
2 changes: 1 addition & 1 deletion .github/workflows/linux-510-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
uses: ./.github/workflows/common.yml
with:
compiler: 'ocaml-base-compiler.5.1.0~rc3'
compiler: 'ocaml-base-compiler.5.1.0'
dune_profile: 'debug-runtime'
runparam: 'v=0,V=1'
timeout: 240
2 changes: 1 addition & 1 deletion .github/workflows/linux-510-fp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ jobs:
build:
uses: ./.github/workflows/common.yml
with:
compiler: 'ocaml-variants.5.1.0~rc3+options,ocaml-option-fp'
compiler: 'ocaml-variants.5.1.0+options,ocaml-option-fp'
timeout: 240
2 changes: 1 addition & 1 deletion .github/workflows/linux-510.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ jobs:
build:
uses: ./.github/workflows/common.yml
with:
compiler: 'ocaml-base-compiler.5.1.0~rc3'
compiler: 'ocaml-base-compiler.5.1.0'
2 changes: 1 addition & 1 deletion .github/workflows/macosx-510.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ jobs:
build:
uses: ./.github/workflows/common.yml
with:
compiler: 'ocaml-base-compiler.5.1.0~rc3'
compiler: 'ocaml-base-compiler.5.1.0'
runs_on: 'macos-latest'
3 changes: 2 additions & 1 deletion .github/workflows/opam.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
- 4.13.x
- 4.14.x
- 5.0.0
- ocaml-variants.5.1.0+trunk
- 5.1.0
- ocaml-variants.5.2.0+trunk

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-510-bytecode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ jobs:
uses: ./.github/workflows/common.yml
with:
runs_on: windows-latest
compiler: ocaml-variants.5.1.0~rc3+options+win,ocaml-option-mingw,ocaml-option-bytecode-only
compiler: ocaml-variants.5.1.0+options+win,ocaml-option-mingw,ocaml-option-bytecode-only
timeout: 240
2 changes: 1 addition & 1 deletion .github/workflows/windows-510.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ jobs:
uses: ./.github/workflows/common.yml
with:
runs_on: windows-latest
compiler: ocaml-variants.5.1.0~rc3+options+win,ocaml-option-mingw
compiler: ocaml-variants.5.1.0+options+win,ocaml-option-mingw
timeout: 240
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -396,8 +396,8 @@ The sequential `STM` tests of `Array`, `Bytes`, and `Float.Array`
would [trigger segfaults on ppc64](https://github.com/ocaml/ocaml/issues/12482)


Frame pointer `Effect` crashes (new, codegen)
---------------------------------------------
Frame pointer `Effect` crashes (new, fixed, codegen)
----------------------------------------------------

Negative `Lin` `Effect` tests exercising exceptions for unhandled
`Effect`s triggered a [crash on a frame pointer switch](https://github.com/ocaml/ocaml/pull/12535)
Expand Down
Loading