Skip to content

Commit

Permalink
CI debug
Browse files Browse the repository at this point in the history
  • Loading branch information
cropinghigh committed May 8, 2024
1 parent 68e96e6 commit 9d655c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Repo checkout
uses: actions/checkout@v4
- name: Get SDR++ nightly source
run: wget https://github.com/AlexandreRouma/SDRPlusPlus/archive/refs/tags/nightly.tar.gz
run: wget https://github.com/AlexandreRouma/SDRPlusPlus/archive/refs/tags/nightly.tar.gz && pwd && ls -lah
- name: Get SDR++ nightly lib
uses: dsaltares/fetch-gh-release-asset@master
with:
Expand All @@ -21,9 +21,9 @@ jobs:
file: 'sdrpp_debian_sid_amd64.deb'
token: ${{ secrets.GITHUB_TOKEN }}
- name: Unpack SDR++ source and core lib
run: mkdir sdrpp_lib && tar -zxvf nightly.tar.gz -C sdrpp_lib && dpkg-deb -xv sdrpp_debian_sid_amd64.deb ./sdrpp_lib && cp ./.github/workflows/sdrpp_module_hack.cmake ./
run: mkdir sdrpp_lib && tar -zxvf nightly.tar.gz -C sdrpp_lib && dpkg-deb -xv sdrpp_debian_sid_amd64.deb ./sdrpp_lib && cp ./.github/workflows/sdrpp_module_hack.cmake ./ && pwd && ls -lah && ls -lah sdrpp_lib
- name: Cmake
run: mkdir build && cd build && cmake .. -DSDRPP_MODULE_CMAKE="../sdrpp_module_hack.cmake"
run: mkdir build && cd build && ls -lah .. && cmake .. -DSDRPP_MODULE_CMAKE="../sdrpp_module_hack.cmake"
- name: Make
run: make -j4
- name: Upload library
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdrpp_module_hack.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Get needed values depending on if this is in-tree or out-of-tree
if (NOT SDRPP_CORE_ROOT)
set(SDRPP_CORE_ROOT "../sdrpp_lib/core/src")
set(SDRPP_CORE_ROOT "../sdrpp_lib/SDRPlusPlus-nightly/core/src")
endif ()
if (NOT SDRPP_MODULE_COMPILER_FLAGS)
# Compiler flags
Expand Down

0 comments on commit 9d655c3

Please sign in to comment.