Skip to content

Commit

Permalink
Revert "Return to kontrol-kup"
Browse files Browse the repository at this point in the history
This reverts commit e234dc3.
  • Loading branch information
F-WRunTime committed Oct 10, 2023
1 parent e234dc3 commit c456c41
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/actions/with-docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ runs:
--tty \
--detach \
--user root \
--workdir /home/ubuntu/workspace \
ghcr.io/runtimeverification/devops/kontrol-kup:${KONTROL_RELEASE}
--workdir /home/user/workspace \
runtimeverificationinc/kontrol:ubuntu-jammy-${KONTROL_RELEASE}
# Copy the current Checkout direcotry into the container
docker cp . ${CONTAINER_NAME}:/home/ubuntu/workspace
docker exec ${CONTAINER_NAME} chown -R ubuntu:ubuntu /home/ubuntu
docker cp . ${CONTAINER_NAME}:/home/user/workspace
docker exec ${CONTAINER_NAME} chown -R user:user /home/user
7 changes: 3 additions & 4 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@ jobs:
- name: Docker Login w/ Github Token
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
username: rvdockerhub
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: "Start Docker Container"
uses: ./.github/actions/with-docker
Expand All @@ -44,7 +43,7 @@ jobs:
- name: 'Test New Tool Versions'
run: |
# Run the following in the running docker container
docker exec -u ubuntu ${{ env.repository_basename }}-ci bash -c './test/run-kevm.sh'
docker exec -u user ${{ env.repository_basename }}-ci bash -c './test/run-kevm.sh'
- name: 'Stop Docker Container'
if: always()
Expand Down

0 comments on commit c456c41

Please sign in to comment.