Skip to content

Commit

Permalink
try to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Jan 10, 2024
1 parent 7e7a5bf commit 6815745
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
#- windows-latest
ocaml-compiler:
- '4.08.x'
- '4.12.x'
- '4.14.x'
- '5.0.x'

Expand All @@ -33,7 +34,10 @@ jobs:

- run: opam install -t trace trace-tef trace-fuchsia --deps-only
- run: opam install ppx_trace --deps-only # no tests
- run: opam exec -- dune build '@install' -p trace,trace-tef,trace-fuchsia,ppx_trace
if: matrix.ocaml-compiler != '4.08.x'
- run: opam exec -- dune build '@install' -p trace,trace-tef,trace-fuchsia
- run: opam exec -- dune build '@install' -p ppx_trace
if: matrix.ocaml-compiler != '4.08.x'
- run: opam exec -- dune runtest -p trace
- run: opam install trace
- run: opam exec -- dune runtest -p trace-tef trace-fuchsia
Expand Down
4 changes: 2 additions & 2 deletions ppx_trace.opam
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ synopsis: "A ppx-based preprocessor for trace"
maintainer: ["Simon Cruanes"]
authors: ["Simon Cruanes"]
license: "MIT"
tags: ["trace" "tracing" "observability" "profiling" "ppx"]
tags: ["trace" "ppx"]
homepage: "https://github.com/c-cube/ocaml-trace"
bug-reports: "https://github.com/c-cube/ocaml-trace/issues"
depends: [
"ocaml" {>= "4.12"}
"ppxlib" {>= "0.28"}
"ppxlib" {>= "0.25"}
"trace" {= version}
"trace-tef" {= version & with-test}
"dune" {>= "2.9"}
Expand Down
2 changes: 1 addition & 1 deletion trace-tef.opam
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ synopsis:
maintainer: ["Simon Cruanes"]
authors: ["Simon Cruanes"]
license: "MIT"
tags: ["trace" "tracing" "catapult"]
tags: ["trace" "tracing" "catapult" "TEF" "chrome-format"]
homepage: "https://github.com/c-cube/ocaml-trace"
bug-reports: "https://github.com/c-cube/ocaml-trace/issues"
depends: [
Expand Down

0 comments on commit 6815745

Please sign in to comment.