Merge branch 'master' of gitlab.com:gabriel.alfour/tezos

This commit is contained in:
Galfour 2019-04-20 11:06:49 +00:00
commit ecc509ad4c
2 changed files with 11 additions and 5 deletions

View File

@ -8,22 +8,25 @@ before_script:
- echo "$PATH" - echo "$PATH"
- printf '' | opam init - printf '' | opam init
- eval $(opam config env) - eval $(opam config env)
- printf '' | opam switch create $switch ocaml-base-compiler.4.06.1 - printf '' | opam switch create toto ocaml-base-compiler.4.06.1
- eval $(opam config env) - eval $(opam config env)
- opam repository add tezos-opam-repository https://gitlab.com/gabriel.alfour/tezos-opam-repository.git - opam repository add new-tezos-opam-repository https://gitlab.com/gabriel.alfour/new-tezos-opam-repository.git
- eval $(opam config env) - eval $(opam config env)
# Show versions and current switch
- opam --version - opam --version
- printf '' | ocaml - printf '' | ocaml
- opam switch
default-job: default-job:
script: script:
- (cd src/lib_utils && opam install -y --working-dir .) - (cd src/lib_utils && ls -a && opam install -y --working-dir .)
- (cd src/ligo && opam install -y --working-dir .) - (cd src/ligo && ls -a && opam install -y --working-dir .)
- (cd src/ligo && dune build && dune build -p ligo && dune build @ligo-test) - (cd src/ligo && ls -a && dune build && dune build -p ligo && dune build @ligo-test)
artifacts: artifacts:
paths: paths:
- src/ligo/bin/cli.ml - src/ligo/bin/cli.ml
install-from-repo-job: install-from-repo-job:
script: script:
- opam install -y ligo - opam install -y ligo

View File

@ -4,6 +4,7 @@ maintainer: "gabriel.alfour@gmail.com"
authors: [ "Galfour" ] authors: [ "Galfour" ]
homepage: "https://gitlab.com/gabriel.alfour/tezos" homepage: "https://gitlab.com/gabriel.alfour/tezos"
bug-reports: "https://gitlab.com/gabriel.alfour/tezos/issues" bug-reports: "https://gitlab.com/gabriel.alfour/tezos/issues"
synopsis: "A higher-level language which compiles to Michelson"
dev-repo: "git+https://gitlab.com/gabriel.alfour/tezos.git" dev-repo: "git+https://gitlab.com/gabriel.alfour/tezos.git"
license: "MIT" license: "MIT"
depends: [ depends: [
@ -12,6 +13,8 @@ depends: [
"menhir" "menhir"
"ppx_let" "ppx_let"
"tezos-utils" "tezos-utils"
"getopt"
"yojson"
] ]
build: [ build: [
[ "dune" "build" "-p" name "-j" jobs ] [ "dune" "build" "-p" name "-j" jobs ]