We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 782cde7 commit 1b457a4Copy full SHA for 1b457a4
.github/workflows/ci.yml
@@ -185,6 +185,9 @@ jobs:
185
- name: Install deps
186
run: opam install . --deps-only --with-test
187
188
+ - name: Build running a bash script
189
+ run: opam exec -- bash ./dune_build.sh
190
+
191
- name: Build
192
run: opam exec -- dune build
193
packages/sury-ppx/src/dune_build.sh
@@ -0,0 +1,6 @@
1
+#!/bin/bash
2
3
+echo "current directory: $(pwd)"
4
5
+echo "start building with dune"
6
+dune build
0 commit comments