Skip to content
Snippets Groups Projects
Commit 1421ca90 authored by gabrielhdt's avatar gabrielhdt
Browse files

setting ci

parent f61d04cb
No related branches found
No related tags found
No related merge requests found
......@@ -22,25 +22,26 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!
# Runs a set of commands using the runners shell
- name: setup
- name: opam setup
run: |
sudo apt install --yes emacs
sudo wget https://github.com/ocaml/opam/releases/download/2.0.5/opam-2.0.5-x86_64-linux -O /usr/bin/opam
sudo chmod 755 /usr/bin/opam
opam init -a --disable-sandboxing --compiler="4.07.1"
opam update
opam switch "4.07.1"
opam $(eval env)
opam install alt-ergo.2.3.0
eval $(opam env)
opam install alt-ergo.2.3.0 --yes
git clone https://github.com/Deducteam/lambdapi.git lambdapi
(cd lambdapi || exit 1
opam pin add -n -k path lambdapi .)
opam install lambdapi
wh3 config --full-config
opam install --deps-only -t -d lambdapi --yes
(cd lambdapi || exit 1
make install)
why3 config --full-config
- name: check
run: lambdapi check encodings/*.lp
run: |
eval $(opam env)
lambdapi check encodings/*.lp
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment