Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
digama0 committed Nov 22, 2024
1 parent a26b4f1 commit a8d2679
Show file tree
Hide file tree
Showing 3 changed files with 2,501 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,15 @@ jobs:
working-directory: examples
# run: mm0-c compiler.mmb < x86_join.mm0
run: mm0-c compiler.mmb < compiler_join.mm0
- name: hello_mmc_join.mm0
working-directory: examples
run: mm0-rs join hello_mmc.mm0 | tee hello_mmc_join.mm0
- name: hello_mmc.mm1
working-directory: examples
run: mm0-rs compile -W hello_mmc.mm1 hello_mmc.mmb
- name: hello_mmc.mmb
working-directory: examples
run: mm0-c hello_mmc.mmb < compiler_join.mm0
run: mm0-c hello_mmc.mmb < hello_mmc_join.mm0
- name: hol.mm1
working-directory: examples
run: mm0-rs compile -W hol.mm1 hol.mmb
Expand Down
7 changes: 7 additions & 0 deletions examples/hello_mmc.mm0
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import "compiler.mm0";

def test: string;

theorem test_isBasicElf: $ isBasicElf test $;
theorem test_ok {k vs x: nat}:
$ A. k (initialConfig test k -> terminates_ensuring k (S\ vs, S\ x, sn 0)) $;
Loading

0 comments on commit a8d2679

Please sign in to comment.