-
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.
- Loading branch information
1 parent
2d0f87a
commit aeff8a8
Showing
4 changed files
with
100 additions
and
0 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,33 @@ | ||
name: 'With Docker' | ||
description: 'Run a given stage with Docker Image' | ||
inputs: | ||
container-name: | ||
description: 'Docker container name to use' | ||
required: true | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: 'Set up Docker' | ||
shell: bash {0} | ||
env: | ||
CONTAINER_NAME: ${{ inputs.container-name }} | ||
run: | | ||
set -euxo pipefail | ||
TAG=runtimeverificationinc/${CONTAINER_NAME} | ||
K_COMMIT=$(cat ./deps/k_release) | ||
docker build . --tag ${TAG} --build-arg K_COMMIT=${K_COMMIT} | ||
docker run \ | ||
--name ${CONTAINER_NAME} \ | ||
--rm \ | ||
--interactive \ | ||
--tty \ | ||
--detach \ | ||
--user root \ | ||
--workdir /home/user \ | ||
${TAG} | ||
docker cp . ${CONTAINER_NAME}:/home/user | ||
docker exec ${CONTAINER_NAME} chown -R user:user /home/user |
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,30 @@ | ||
--- | ||
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: | ||
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 -j4 test' | ||
- name: 'Tear down Docker' | ||
if: always() | ||
run: | | ||
docker stop k-rust-demo-${{ github.sha }} |
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,36 @@ | ||
ARG Z3_VERSION | ||
ARG K_COMMIT | ||
|
||
ARG Z3_VERSION=4.12.1 | ||
FROM runtimeverificationinc/z3:ubuntu-jammy-${Z3_VERSION} as Z3 | ||
|
||
ARG K_COMMIT | ||
FROM runtimeverificationinc/kframework-k:ubuntu-jammy-${K_COMMIT} | ||
|
||
COPY --from=Z3 /usr/bin/z3 /usr/bin/z3 | ||
|
||
# RUN apt-get update \ | ||
# && apt-get upgrade --yes \ | ||
# && apt-get install --yes \ | ||
# cmake \ | ||
# curl \ | ||
# pandoc \ | ||
# python3 \ | ||
# python3-pip \ | ||
# wabt | ||
|
||
ARG USER_ID=1000 | ||
ARG GROUP_ID=1000 | ||
RUN groupadd -g $GROUP_ID user && useradd -m -u $USER_ID -s /bin/sh -g user user | ||
|
||
USER user:user | ||
WORKDIR /home/user | ||
|
||
# RUN curl -sSL https://install.python-poetry.org | python3 - \ | ||
# && poetry --version | ||
|
||
# RUN pip3 install --user \ | ||
# cytoolz \ | ||
# numpy | ||
|
||
# ENV PATH=/home/user/wabt/build:/home/user/.local/bin:$PATH |
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 @@ | ||
7.1.92 |