Skip to content

Commit

Permalink
Set up testing workflow (#8)
Browse files Browse the repository at this point in the history
* Set up testing workflow

* Fix ordering in some declarations

* Add event triggers

* Test workflow rework

* change concurrency group to use the workflow name and branch running it

---------

Co-authored-by: F-WRunTime <[email protected]>
  • Loading branch information
gtrepta and F-WRunTime authored Feb 8, 2024
1 parent 1a5c732 commit b8a7a37
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +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

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 b8a7a37

Please sign in to comment.