diff --git a/.github/workflows/end2end-smoke-test.yml b/.github/workflows/end2end-smoke-test.yml index e37e631..a0cc516 100644 --- a/.github/workflows/end2end-smoke-test.yml +++ b/.github/workflows/end2end-smoke-test.yml @@ -18,5 +18,6 @@ jobs: - name: Running the generator run: | source ~/.bash_profile + opam install . --deps-only rm *.gen.inc dune exec --profile release -- riscv_disasm_from_sail -f bin/sail.filepaths.txt \ No newline at end of file diff --git a/dune-project b/dune-project index 1ae26fa..6885a3c 100644 --- a/dune-project +++ b/dune-project @@ -5,11 +5,11 @@ (generate_opam_files true) (source - (github username/reponame)) + (github moste00/riscv_disasm_from_sail)) (authors "Mostafa Kamal") -(maintainers "Maintainer Name") +(maintainers "Mostafa Kamal") (license LICENSE) diff --git a/riscv_disasm_from_sail.opam b/riscv_disasm_from_sail.opam new file mode 100644 index 0000000..4783813 --- /dev/null +++ b/riscv_disasm_from_sail.opam @@ -0,0 +1,32 @@ +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +synopsis: "A short synopsis" +description: "A longer description" +maintainer: ["Mostafa Kamal"] +authors: ["Mostafa Kamal"] +license: "LICENSE" +tags: ["topics" "to describe" "your" "project"] +homepage: "https://github.com/moste00/riscv_disasm_from_sail" +doc: "https://url/to/documentation" +bug-reports: "https://github.com/moste00/riscv_disasm_from_sail/issues" +depends: [ + "ocaml" + "dune" {>= "3.15"} + "libsail" {= "0.17.1"} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/moste00/riscv_disasm_from_sail.git"