Skip to content

Commit f293e64

Browse files
authored
Merge pull request #37 from jmid/add-dependabot
Add dependabot checking github actions and tweak existing CI
2 parents 869e560 + 4331cd8 commit f293e64

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/ci.yaml renamed to .github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ name: Main CI workflow
33
on:
44
pull_request:
55
push:
6-
schedule:
7-
# Prime the caches every Monday
8-
- cron: 0 1 * * MON
96

107
jobs:
118
build:
@@ -23,6 +20,8 @@ jobs:
2320
# - 4.11.x
2421
- 4.12.x
2522
# - 4.13.x
23+
- 4.14.x
24+
- 5.3.x
2625

2726
runs-on: ${{ matrix.os }}
2827

@@ -31,7 +30,7 @@ jobs:
3130
uses: actions/checkout@v2
3231

3332
- name: Use OCaml ${{ matrix.ocaml-compiler }}
34-
uses: ocaml/setup-ocaml@v2
33+
uses: ocaml/setup-ocaml@v3
3534
with:
3635
ocaml-compiler: ${{ matrix.ocaml-compiler }}
3736

@@ -47,7 +46,7 @@ jobs:
4746
echo "$(brew --prefix)/opt/coreutils/libexec/gnubin" >> $GITHUB_PATH
4847
echo "$PATH"
4948
echo `which timeout`
50-
ls /usr/local/opt/coreutils/libexec/gnubin
49+
# ls /usr/local/opt/coreutils/libexec/gnubin
5150

5251
- run: opam install . --deps-only --with-test
5352

test/negative-tests/ppx-negtests.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ Instrument and check that it was received
228228
> )
229229
> EOF
230230
231-
$ bash ../filter_dune_build.sh ./test.bc --instrument-with mutaml 2>&1 | grep -v "no-merge\|Embed errors\|keywords"
231+
$ bash ../filter_dune_build.sh ./test.bc --instrument-with mutaml 2>&1 | grep -v "use-compiler-pp\|no-merge\|Embed errors\|keywords"
232232
ppx.exe [extra_args] [<files>]
233233
-as-ppx Run as a -ppx rewriter (must be the first argument)
234234
--as-ppx Same as -as-ppx

0 commit comments

Comments
 (0)