-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request
Description
On a whim I set up CICD testing for one of my EECS projects, and I figured I'd use this container for it. I am using addnab/docker-run-action@v3 for the workflow, and so I need to manually specify options rather than just using caen .... I found that I only needed to set the dir mount option, since the other options are only used in tty or interactive mode. The following is a copy of the file I used, adapted from addnab/docker-run-action:
name: Test
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Test with CAEN
uses: addnab/docker-run-action@v3
with:
registry: gcr.io
image: derickson2402/dockerized-caen:latest
options: -v ${{ github.workspace }}:/code
run: |
echo "Running Script"
/work/run-scriptReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request