Skip to content

Commit

Permalink
Release 0.2.0 Merge pull request #21 from microsoft/dev
Browse files Browse the repository at this point in the history
Dev to Main for Release 0.2.0
  • Loading branch information
jo-rivera authored Apr 28, 2022
2 parents 8607f11 + 2d2966c commit d4546ac
Show file tree
Hide file tree
Showing 125 changed files with 1,997 additions and 1,746 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions .github/workflows/checkin_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
- uses: actions/checkout@master
- name: Build
run: |
cd gr-azure-software-radio; pip install -r python/requirements.txt
pip install -r python/requirements.txt
mkdir build; cd build; cmake ..; cmake --build . -j --config Release
- name: Install
run: |
cd gr-azure-software-radio/build
cd build
sudo make install -j
- name: Update GNURadio preferences
run: |
Expand All @@ -46,15 +46,15 @@ jobs:
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
run: |
cd gr-azure-software-radio/build
cd build
export PYTHONPATH=${{ secrets.PYTHONPATH }}; export LD_LIBRARY_PATH=${{ secrets.LD_LIBRARY_PATH }};ctest -V -T test;
shell: bash
- name: pylint
continue-on-error: false
run: |
export PYTHONPATH=${{ secrets.PYTHONPATH }}; export LD_LIBRARY_PATH=${{ secrets.LD_LIBRARY_PATH }};
cd ..
pylint azure-software-radio --rcfile azure-software-radio/.pylintrc
pylint gr-azure --rcfile gr-azure/.pylintrc
- name: check step
if: success()
run: echo pylint has passed all checks
12 changes: 6 additions & 6 deletions .github/workflows/nightly_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ jobs:
username: ${{ secrets.ACR_PRINCIPAL_ID }}
password: ${{ secrets.ACR_PRINCIPAL_PWD }}
timeout-minutes: 20

steps:
- uses: actions/checkout@master
- name: Build
run: |
cd gr-azure-software-radio; pip install -r python/requirements.txt
pip install -r python/requirements.txt
mkdir build; cd build; cmake ..; cmake --build . -j --config Release
- name: Install
run: |
cd gr-azure-software-radio/build
cd build
sudo make install -j
- name: Update GNURadio preferences
run: |
Expand All @@ -48,8 +48,8 @@ jobs:
AZURE_KEYVAULT_TEST_KEY: ${{ secrets.AZURE_KEYVAULT_TEST_KEY }}
AZURE_STORAGE_READONLY_SAS: ${{ secrets.AZURE_STORAGE_READONLY_SAS }}
run: |
cd gr-azure-software-radio/build
export PYTHONPATH=${{ secrets.PYTHONPATH }}; export LD_LIBRARY_PATH=${{ secrets.LD_LIBRARY_PATH }};ctest -V -T test;
cd build
export PYTHONPATH=${{ secrets.PYTHONPATH }}; export LD_LIBRARY_PATH=${{ secrets.LD_LIBRARY_PATH }};ctest -V -T test;
echo " "
echo "Now running integration..."
cd ..; cd python; python3 -m unittest integration_blob_source.py; python3 -m unittest integration_blob_sink.py; python3 -m unittest integration_default_credentials.py; python3 -m unittest integration_eventhub_sink.py; python3 -m unittest integration_eventhub_source.py;
Expand All @@ -60,7 +60,7 @@ jobs:
run: |
export PYTHONPATH=${{ secrets.PYTHONPATH }}; export LD_LIBRARY_PATH=${{ secrets.LD_LIBRARY_PATH }};
cd ..
pylint azure-software-radio --rcfile azure-software-radio/.pylintrc
pylint gr-azure --rcfile gr-azure/.pylintrc
- name: check step
if: success()
run: echo pylint has passed all checks
Loading

0 comments on commit d4546ac

Please sign in to comment.