Add gtkwave to dockerfile #109
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
name: Icarus Simulation | |
on: | |
push: | |
branches: [master] | |
jobs: | |
build-container: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./ | |
steps: | |
- name: Check out the repository to the runner | |
uses: actions/checkout@v1 | |
- name: Build the docker image | |
uses: docker/build-push-action@v2 | |
# run: docker build . --file Dockerfile --tag icarus-simulation:$(date +%s) | |
# - name: Make the script file executable | |
# run: chmod +x ./.github/workflows/iverilog_run.sh | |
# - name: Run icarus | |
# run: ./.github/workflows/iverilog_run.sh | |
# shell: bash |