Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 61 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,12 @@ jobs:
apt-get update
apt-get install git -y
git --version
- name: Install numpy
run: pip3 install numpy
- name: Install casper-r2sdf-fft
run: pip3 install casper-r2sdf-fft
- name: Install pytest
run: pip3 install pytest
# Checks-out your repository (and submodules) under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -923,6 +929,8 @@ jobs:
git --version
- name: Install numpy
run: pip3 install numpy
- name: Install casper-r2sdf-fft
run: pip3 install casper-r2sdf-fft
- name: Install pytest
run: pip3 install pytest
# Checks-out your repository (and submodules) under $GITHUB_WORKSPACE, so your job can access it
Expand Down Expand Up @@ -977,8 +985,10 @@ jobs:
git --version
- name: Install numpy
run: pip3 install numpy
- name: Install casper-r2sdf-fft
run: pip3 install casper-r2sdf-fft
- name: Install pytest
run: pip3 install pytest
run: pip3 install pytest
# Checks-out your repository (and submodules) under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -1031,8 +1041,10 @@ jobs:
git --version
- name: Install numpy
run: pip3 install numpy
- name: Install casper-r2sdf-fft
run: pip3 install casper-r2sdf-fft
- name: Install pytest
run: pip3 install pytest
run: pip3 install pytest

# Checks-out your repository (and submodules) under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
Expand Down Expand Up @@ -1070,6 +1082,53 @@ jobs:
path: ./casper_wb_fft/wide_fft_report.xml
if-no-files-found: 'warn' # ['warn', 'error', 'ignore']

# all_fft:
# # The type of runner that the job will run on
# runs-on: ubuntu-latest
# needs: [files_changed]
# if: needs.files_changed.outputs.all_fft == 'true'

# # Steps represent a sequence of tasks that will be executed as part of the job
# steps:
# # Checks-out your repository (and submodules) under $GITHUB_WORKSPACE, so your job can access it
# - uses: actions/checkout@v2
# with:
# submodules: 'recursive'
# token: ${{ secrets.TOKEN }}
# - id: casper_all_fft_test
# uses: VUnit/vunit_action@master
# with:
# image: ghdl/vunit:llvm
# cmd: python3 casper_wb_fft/run.py --xunit-xml ./casper_wb_fft/wide_fft_report.xml

# - name: Note casper_all_fft_test Failure
# if: ${{ failure() }}
# uses: action-badges/[email protected]
# with:
# label: casper_all_fft
# message: failing
# message-color: "C74D1F"
# file-name: casper_all_fft_test.svg
# badge-branch: badges
# style: flat
# github-token: "${{ secrets.GITHUB_TOKEN }}"
# - name: Note casper_all_fft_test Success
# if: ${{ steps.casper_wide_fft_test.outcome == 'success' }}
# uses: action-badges/[email protected]
# with:
# label: casper_all_fft
# message: passing
# message-color: "4DC71F"
# file-name: casper_all_fft_test.svg
# badge-branch: badges
# style: flat
# github-token: "${{ secrets.GITHUB_TOKEN }}"
# - uses: actions/upload-artifact@v4
# with:
# name: wide_fft_report
# path: ./casper_wb_fft/wide_all_report.xml
# if-no-files-found: 'warn' # ['warn', 'error', 'ignore']

single_filter:
# The type of runner that the job will run on
runs-on: ubuntu-latest
Expand Down
19 changes: 19 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ casper_accumulators_test: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -32,6 +33,7 @@ casper_adders_test: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -50,6 +52,7 @@ counter: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -68,6 +71,7 @@ delay: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -87,6 +91,7 @@ filter: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -105,6 +110,7 @@ flow_control: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -123,6 +129,7 @@ misc: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -141,6 +148,7 @@ multiplexer: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -159,6 +167,7 @@ multiplier: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -177,6 +186,7 @@ fifo: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -195,6 +205,7 @@ ram: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -213,6 +224,7 @@ rtwosdf_fft: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -231,6 +243,7 @@ rtwosdf_fft_bitaccurate_twid: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -250,6 +263,7 @@ pipe_fft: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -269,6 +283,7 @@ par_fft: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -287,6 +302,7 @@ wide_fft: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -306,6 +322,7 @@ single_filter: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -324,6 +341,7 @@ wide_filter: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand All @@ -342,6 +360,7 @@ wbpfb: # This job runs in the test stage.
- ghdl
script:
- python3 -m pip install pytest --progress-bar off
- python3 -m pip install casper-r2sdf-fft --progress-bar off
- python3 -m pip install numpy --progress-bar off
- echo Attempting to start Vunit Tests
- cd $GIT_CLONE_PATH
Expand Down
Loading
Loading