File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# Install dev dependencies from OPAM
4
4
opam init -y --bare --disable-sandboxing
5
- opam switch create 5.2.0 --packages ocaml-option-static
5
+ opam switch create 5.2.1 --packages ocaml-option-static
6
6
opam install . --deps-only -y
7
7
8
8
# For IDE support, install the OCaml language server
Original file line number Diff line number Diff line change @@ -87,23 +87,23 @@ jobs:
87
87
matrix :
88
88
include :
89
89
- os : ubuntu-latest # x64
90
- ocaml_compiler : ocaml-variants.5.2.0 +options,ocaml-option-static
90
+ ocaml_compiler : ocaml-variants.5.2.1 +options,ocaml-option-static
91
91
upload_binaries : true
92
92
upload_libs : true
93
93
# Build the playground compiler and run the benchmarks on the fastest runner
94
94
build_playground : true
95
95
benchmarks : true
96
96
- os : buildjet-2vcpu-ubuntu-2204-arm # ARM
97
- ocaml_compiler : ocaml-variants.5.2.0 +options,ocaml-option-static
97
+ ocaml_compiler : ocaml-variants.5.2.1 +options,ocaml-option-static
98
98
upload_binaries : true
99
99
- os : macos-13 # x64
100
- ocaml_compiler : 5.2.0
100
+ ocaml_compiler : 5.2.1
101
101
upload_binaries : true
102
102
- os : macos-14 # ARM
103
- ocaml_compiler : 5.2.0
103
+ ocaml_compiler : 5.2.1
104
104
upload_binaries : true
105
105
- os : windows-latest
106
- ocaml_compiler : 5.2.0
106
+ ocaml_compiler : 5.2.1
107
107
upload_binaries : true
108
108
109
109
# Verify that the compiler still builds with older OCaml versions
Original file line number Diff line number Diff line change 27
27
- AST cleanup: Represent the arity of uncurried function definitions directly in the AST. https://github.com/rescript-lang/rescript/pull/7197
28
28
- AST cleanup: Remove Pexp_function from the AST. https://github.com/rescript-lang/rescript/pull/7198
29
29
- Remove unused code from Location and Rescript_cpp modules. https://github.com/rescript-lang/rescript/pull/7150
30
+ - Build with OCaml 5.2.1. https://github.com/rescript-lang/rescript-compiler/pull/7201
30
31
31
32
# 12.0.0-alpha.5
32
33
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ Make sure you have [opam](https://opam.ocaml.org/doc/Install.html) installed on
47
47
opam init
48
48
49
49
# Any recent OCaml version works as a development compiler
50
- opam switch create 5.2.0 # can also create local switch with opam switch create
50
+ opam switch create 5.2.1 # can also create local switch with opam switch create
51
51
52
52
# Install dev dependencies from OPAM
53
53
opam install . --deps-only --with-test --with-dev-setup -y
You can’t perform that action at this time.
0 commit comments