Deprecate Dafny formalization #513
Workflow file for this run
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
name: Build cedar-spec | |
on: | |
pull_request: | |
jobs: | |
build_and_test_lean: | |
name: Build and Test Lean | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
steps: | |
- name: Checkout cedar-spec | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Lean | |
shell: bash | |
run: | | |
wget https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh | |
bash elan-init.sh -y | |
- name: Build | |
working-directory: ./cedar-lean | |
shell: bash | |
run: source ~/.profile && lake build Cedar | |
- name: Test | |
working-directory: ./cedar-lean | |
shell: bash | |
run: source ~/.profile && lake exe CedarUnitTests | |
build_and_test_drt: | |
name: Build and Test DRT | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
steps: | |
- name: Checkout cedar-spec | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Lean | |
shell: bash | |
run: | | |
wget https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh | |
bash elan-init.sh -y | |
- name: rustup | |
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | |
- name: cargo fmt (cedar-policy-generators) | |
working-directory: ./cedar-policy-generators | |
run: cargo fmt --all --check | |
- name: cargo fmt (cedar-drt) | |
working-directory: ./cedar-drt | |
run: cargo fmt --all --check | |
- name: cargo fmt (cedar-drt/fuzz/) | |
working-directory: ./cedar-drt/fuzz | |
run: cargo fmt --all --check | |
- name: cargo rustc (cedar-policy-generators) | |
working-directory: ./cedar-policy-generators | |
run: RUSTFLAGS="-D warnings -F unsafe-code" cargo build --verbose | |
- name: cargo test (cedar-policy-generators) | |
working-directory: ./cedar-policy-generators | |
run: cargo test --verbose | |
- name: build.sh | |
shell: bash | |
run: source ~/.profile && ./build.sh |