Skip to content

Commit

Permalink
static.
Browse files Browse the repository at this point in the history
  • Loading branch information
anarkiwi committed Sep 19, 2024
1 parent ee98931 commit f3b44ee
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fetch-depth: 0
- name: build_test
run: |
bin/apt_get.sh && TEST_VKFFT=1 bin/build_test.sh && bin/test_grc310.sh
bin/apt_get.sh && bin/codecheck.sh && SIGMF_VALIDATE=/root/.local/bin/sigmf_validate TEST_VKFFT=1 bin/build_test.sh && bin/test_grc310.sh
test-2004-gnuradio39:
runs-on: ubuntu-20.04
steps:
Expand Down
4 changes: 1 addition & 3 deletions bin/build_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,5 @@ bin/check_blocks.py && \
sudo pip3 install --user -U pip && \
pip3 install --user -r codecheck-requirements.txt && \
sudo pip3 install --user -r codecheck-requirements.txt && \
black python/iqtlabs/qa_* && \
./bin/clonedeps.sh && \
rm -rf build && mkdir build && cd build && cmake .. && make -j $(nproc) && sudo make install && sudo ldconfig && sudo SIGMF_VALIDATE=/root/.local/bin/sigmf_validate make test ARGS="--verbose --timeout 180" && cd .. && \
PYTHONPATH=python/iqtlabs pytype -d attribute-error python/iqtlabs/qa_*
rm -rf build && mkdir build && cd build && cmake .. && make -j $(nproc) && sudo make install && sudo ldconfig && sudo SIGMF_VALIDATE=$SIGMF_VALIDATE make test ARGS="--verbose --timeout 180" && cd ..
7 changes: 7 additions & 0 deletions bin/code_check.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh
set -e
pip3 install --user -U pip && \
sudo pip3 install --user -U pip && \
pip3 install --user -r static-requirements.txt && \
sudo pip3 install --user -r static-requirements.txt && \
black python/iqtlabs/qa_*

0 comments on commit f3b44ee

Please sign in to comment.