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"
- printf '' | opam init
- 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)
- 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)
# Show versions and current switch
- opam --version
- printf '' | ocaml
- opam switch
default-job:
script:
- (cd src/lib_utils && opam install -y --working-dir .)
- (cd src/ligo && opam install -y --working-dir .)
- (cd src/ligo && dune build && dune build -p ligo && dune build @ligo-test)
- (cd src/lib_utils && ls -a && opam install -y --working-dir .)
- (cd src/ligo && ls -a && opam install -y --working-dir .)
- (cd src/ligo && ls -a && dune build && dune build -p ligo && dune build @ligo-test)
artifacts:
paths:
- src/ligo/bin/cli.ml
install-from-repo-job:
script:
- opam install -y ligo

View File

@ -4,6 +4,7 @@ maintainer: "gabriel.alfour@gmail.com"
authors: [ "Galfour" ]
homepage: "https://gitlab.com/gabriel.alfour/tezos"
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"
license: "MIT"
depends: [
@ -12,6 +13,8 @@ depends: [
"menhir"
"ppx_let"
"tezos-utils"
"getopt"
"yojson"
]
build: [
[ "dune" "build" "-p" name "-j" jobs ]