From 7038059819d5ca346ecc60764c6c8b89b084e379 Mon Sep 17 00:00:00 2001 From: smolck <46855713+smolck@users.noreply.github.com> Date: Tue, 31 Dec 2019 12:51:06 -0600 Subject: [PATCH 1/5] [WIP] Fill in dune-project file --- dune-project | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/dune-project b/dune-project index 7655de0..4f7015d 100644 --- a/dune-project +++ b/dune-project @@ -1 +1,18 @@ -(lang dune 1.1) +(lang dune 1.11) +(using fmt 1.2) +(name reglfw) +(generate_opam_files true) + +(source (github revery-ui/reason-glfw)) +(authors "Bryan Phelps") +(maintainers "Bryan Phelps ") +(license MIT) + +(package + (name reglfw) + (synopsis "Cross-platform Reason / OCaml bindings for GLFW") + (description "") + (depends + (ocaml (>= )) + (dune (>= 1.11)) + ) From a1de8451164866653c9bdb8280797f4439c2007b Mon Sep 17 00:00:00 2001 From: smolck <46855713+smolck@users.noreply.github.com> Date: Tue, 31 Dec 2019 17:08:15 -0600 Subject: [PATCH 2/5] Push @Et7f3's changes. --- dune-project | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune-project b/dune-project index 4f7015d..f14c1f2 100644 --- a/dune-project +++ b/dune-project @@ -11,7 +11,7 @@ (package (name reglfw) (synopsis "Cross-platform Reason / OCaml bindings for GLFW") - (description "") + (description "Cross-platform Reason / OCaml bindings for GLFW") (depends (ocaml (>= )) (dune (>= 1.11)) From c1952794b2baba15be893bae6a5ac190100981cd Mon Sep 17 00:00:00 2001 From: smolck <46855713+smolck@users.noreply.github.com> Date: Tue, 31 Dec 2019 17:47:52 -0600 Subject: [PATCH 3/5] Update dune-project and add generated reglfw.opam --- dune-project | 6 +++--- reglfw.opam | 31 ++++++++++++++++++++++++++----- 2 files changed, 29 insertions(+), 8 deletions(-) diff --git a/dune-project b/dune-project index f14c1f2..64d6e06 100644 --- a/dune-project +++ b/dune-project @@ -13,6 +13,6 @@ (synopsis "Cross-platform Reason / OCaml bindings for GLFW") (description "Cross-platform Reason / OCaml bindings for GLFW") (depends - (ocaml (>= )) - (dune (>= 1.11)) - ) + (ocaml (>= 4.07)) + (dune (>= 1.11))) + ) diff --git a/reglfw.opam b/reglfw.opam index ed9c1c3..c75a3d5 100644 --- a/reglfw.opam +++ b/reglfw.opam @@ -1,7 +1,28 @@ -opam-version: "1.2" -version: "dev" -maintainer: "bryphe@outlook.com" -author: ["Bryan Phelps"] +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +synopsis: "Cross-platform Reason / OCaml bindings for GLFW" +description: "Cross-platform Reason / OCaml bindings for GLFW" +maintainer: ["Bryan Phelps "] +authors: ["Bryan Phelps"] +license: "MIT" +homepage: "https://github.com/revery-ui/reason-glfw" +bug-reports: "https://github.com/revery-ui/reason-glfw/issues" +depends: [ + "ocaml" {>= "4.07"} + "dune" {>= "1.11"} +] build: [ - + ["dune" "subst"] {pinned} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] ] +dev-repo: "git+https://github.com/revery-ui/reason-glfw.git" From 27f4efc0fe47121a07850e48550ebee285819adb Mon Sep 17 00:00:00 2001 From: Et7f3 Date: Thu, 6 Feb 2020 18:44:42 +0100 Subject: [PATCH 4/5] vsts -> runner --- azure-pipelines.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index af8c69c..26e41a6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,10 +11,10 @@ jobs: vmImage: 'Ubuntu 16.04' variables: - STAGING_DIRECTORY: /home/vsts/STAGING - STAGING_DIRECTORY_UNIX: /home/vsts/STAGING - ESY__CACHE_INSTALL_PATH: /home/vsts/.esy/3_____________________________________________________________________/i - ESY__CACHE_SOURCE_TARBALL_PATH: /home/vsts/.esy/source/i + STAGING_DIRECTORY: /home/runner/STAGING + STAGING_DIRECTORY_UNIX: /home/runner/STAGING + ESY__CACHE_INSTALL_PATH: /home/runner/.esy/3___________________________________________________________________/i + ESY__CACHE_SOURCE_TARBALL_PATH: /home/rinner/.esy/source/i # ESY__NPM_ROOT: /opt/hostedtoolcache/node/8.14.0/x64/lib/node_modules/esy steps: @@ -30,10 +30,10 @@ jobs: vmImage: 'macOS 10.13' variables: - STAGING_DIRECTORY: /Users/vsts/STAGING - STAGING_DIRECTORY_UNIX: /Users/vsts/STAGING - ESY__CACHE_INSTALL_PATH: /Users/vsts/.esy/3____________________________________________________________________/i - ESY__CACHE_SOURCE_TARBALL_PATH: /Users/vsts/.esy/source/i + STAGING_DIRECTORY: /Users/runner/STAGING + STAGING_DIRECTORY_UNIX: /Users/runner/STAGING + ESY__CACHE_INSTALL_PATH: /Users/runner/.esy/3__________________________________________________________________/i + ESY__CACHE_SOURCE_TARBALL_PATH: /Users/runner/.esy/source/i # ESY__NPM_ROOT: /usr/local/lib/node_modules/esy steps: From 22c76f11b36d81aa8bc2f4c08d12f201a427c8a5 Mon Sep 17 00:00:00 2001 From: Et7f3 Date: Thu, 6 Feb 2020 19:06:46 +0100 Subject: [PATCH 5/5] runner -> vsts on linux --- azure-pipelines.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 26e41a6..193cfd0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,10 +11,10 @@ jobs: vmImage: 'Ubuntu 16.04' variables: - STAGING_DIRECTORY: /home/runner/STAGING - STAGING_DIRECTORY_UNIX: /home/runner/STAGING - ESY__CACHE_INSTALL_PATH: /home/runner/.esy/3___________________________________________________________________/i - ESY__CACHE_SOURCE_TARBALL_PATH: /home/rinner/.esy/source/i + STAGING_DIRECTORY: /home/vsts/STAGING + STAGING_DIRECTORY_UNIX: /home/vsts/STAGING + ESY__CACHE_INSTALL_PATH: /home/vsts/.esy/3_____________________________________________________________________/i + ESY__CACHE_SOURCE_TARBALL_PATH: /home/vsts/.esy/source/i # ESY__NPM_ROOT: /opt/hostedtoolcache/node/8.14.0/x64/lib/node_modules/esy steps: