rename test build action #1
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: build | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
jobs: | |
synthesis: | |
runs-on: ubuntu-latest | |
container: raetro/quartus:13.0sp1 | |
steps: | |
# 1 - Checkout repository | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# 2 - RTL synthesis | |
- name: Run compilation flow | |
run: quartus_sh --flow compile Quartus/RESDMAC.qpf | |
# 3 - Upload artifacts | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: OutputFiles.zip | |
path: output_files/ |