Skip to content

Commit

Permalink
Merge pull request #9 from runtimeverification/devops-workflow
Browse files Browse the repository at this point in the history
Test workflow rework
  • Loading branch information
gtrepta authored Feb 7, 2024
2 parents 43da939 + 8024db4 commit 220fe62
Showing 1 changed file with 28 additions and 27 deletions.
55 changes: 28 additions & 27 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,31 +1,32 @@
name: 'Test PR'
on:
pull_request:
types: [opened, edited, reopened, synchronize]
branches:
- 'master'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
types: [opened, edited, reopened, synchronize]
branches:
- 'master'
workflow_dispatch:
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: 'Start Docker container'
run: |
COMMIT="$(cat deps/k_release)"
docker run --name gh-runner-ci --rm -it --detach --workdir /opt/workspace --user $(id -u):$(id -g) -v "$(pwd):/opt/workspace" -v "/etc/passwd:/etc/passwd:ro" -v "/etc/group:/etc/group:ro" runtimeverificationinc/kframework-k:ubuntu-jammy-${COMMIT}
- name: 'Start K Server'
run: docker exec --detach gh-runner-ci /bin/bash -c 'kserver'
- name: 'Test PL-Tutorial'
run: docker exec -t gh-runner-ci /bin/bash -c 'make -j4'
- name: 'Tear down Docker container'
if: always()
run: |
docker stop gh-runner-ci

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: 'Start Docker container'
run: |
COMMIT="$(cat deps/k_release)"
docker run --name gh-runner-ci --rm -it --detach --workdir /opt/workspace --user $(id -u):$(id -g) -v "$(pwd):/opt/workspace" -v "/etc/passwd:/etc/passwd:ro" -v "/etc/group:/etc/group:ro" runtimeverificationinc/kframework-k:ubuntu-jammy-${COMMIT}
- name: 'Start K Server'
run: docker exec --detach gh-runner-ci /bin/bash -c 'kserver'
- name: 'Test PL-Tutorial'
run: docker exec -t gh-runner-ci /bin/bash -c 'make -j4'
- name: 'Tear down Docker container'
if: always()
run: |
docker stop gh-runner-ci

0 comments on commit 220fe62

Please sign in to comment.