forked from rems-project/asl-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
touch touch remove pr trigger run on github changes Update opam.yml Update opam.yml opam exec dune
- Loading branch information
1 parent
dad1369
commit 7b66402
Showing
3 changed files
with
30 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Build with opam | ||
|
||
on: | ||
push: | ||
branches: [ partial_eval ] | ||
paths: [ '*.opam', '.github/**' ] | ||
pull_request: | ||
paths: [ '*.opam', '.github/**' ] | ||
workflow_dispatch: | ||
|
||
# only run one instance of this action at a time. | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ocaml/setup-ocaml@v2 | ||
with: | ||
ocaml-compiler: 4.09 | ||
- run: opam install dune | ||
- run: opam install . --deps-only --with-test | ||
- run: opam exec -- dune build --profile release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ Currently supports reading/typechecking the specification, | |
interactive execution of ASL statements and expressions, | ||
executing opcodes one at a time, | ||
loading ELF files and executing Arm binaries. | ||
fdsa | ||
fds | ||
""" | ||
maintainer: ["Alastair Reid <[email protected]>"] | ||
authors: ["Alastair Reid"] | ||
|