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: ...@@ -22,25 +22,26 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2 - 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 # Runs a set of commands using the runners shell
- name: setup - name: opam setup
run: | 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 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 sudo chmod 755 /usr/bin/opam
opam init -a --disable-sandboxing --compiler="4.07.1" opam init -a --disable-sandboxing --compiler="4.07.1"
opam update opam update
opam switch "4.07.1" opam switch "4.07.1"
opam $(eval env) eval $(opam env)
opam install alt-ergo.2.3.0 opam install alt-ergo.2.3.0 --yes
git clone https://github.com/Deducteam/lambdapi.git lambdapi git clone https://github.com/Deducteam/lambdapi.git lambdapi
(cd lambdapi || exit 1 (cd lambdapi || exit 1
opam pin add -n -k path lambdapi .) opam pin add -n -k path lambdapi .)
opam install lambdapi opam install --deps-only -t -d lambdapi --yes
wh3 config --full-config (cd lambdapi || exit 1
make install)
why3 config --full-config
- name: check - 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