Test encoding+decoding of contracts #308
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 And Test' | |
on: | |
pull_request: | |
# Stop in progress workflows on the same branch and same workflow to use latest committed code | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
code-quality: | |
name: 'Code Quality Checks' | |
runs-on: [self-hosted, linux, normal] | |
steps: | |
- name: 'Check out code' | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: 'Set up Docker' | |
uses: ./.github/actions/with-docker | |
with: | |
container-name: k-rust-demo-${{ github.sha }} | |
- name: 'Python Code Quality Checks' | |
run: docker exec -t k-rust-demo-${{ github.sha }} /bin/bash -c 'make -C rust-lite' | |
- name: 'Tear down Docker' | |
if: always() | |
run: | | |
docker stop k-rust-demo-${{ github.sha }} | |
build-test: | |
name: 'Build And Test' | |
runs-on: [self-hosted, linux, normal] | |
steps: | |
- name: 'Check out code' | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: 'Set up Docker' | |
uses: ./.github/actions/with-docker | |
with: | |
container-name: k-rust-demo-${{ github.sha }} | |
- name: 'Build the semantics' | |
run: docker exec -t k-rust-demo-${{ github.sha }} /bin/bash -c 'make build -j4' | |
- name: 'Run Tests' | |
run: docker exec -t k-rust-demo-${{ github.sha }} /bin/bash -c 'make test -j4' | |
- name: 'Tear down Docker' | |
if: always() | |
run: | | |
docker stop k-rust-demo-${{ github.sha }} | |
build-test-legacy: | |
name: 'Build And Test the deprecated Mx semantics' | |
runs-on: [self-hosted, linux, normal] | |
steps: | |
- name: 'Check out code' | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: 'Set up Docker' | |
uses: ./.github/actions/with-docker | |
with: | |
container-name: k-rust-demo-${{ github.sha }} | |
- name: 'Build the semantics' | |
run: docker exec -t k-rust-demo-${{ github.sha }} /bin/bash -c 'make build-legacy -j4' | |
- name: 'Run Tests' | |
run: docker exec -t k-rust-demo-${{ github.sha }} /bin/bash -c 'make test-legacy -j4' | |
- name: 'Tear down Docker' | |
if: always() | |
run: | | |
docker stop k-rust-demo-${{ github.sha }} |