Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
8793eff
cmake: Format numpy include path in CMake style for consistency.
ryanvolz Mar 7, 2021
72c013a
Replace boost::filesystem with std::filesystem
ZackerySpytz Feb 24, 2021
33f8a4b
cmake: add compiler version statements
mormj Mar 12, 2021
7408945
cmake: add compile definition for BOOST_DLL
mormj Mar 12, 2021
356ecd5
gr-digital: Install mpsk_stage6.grc example.
drmpeg Mar 13, 2021
4a0c4f1
audio: reduce Windows audio priority to LOW, this prefers Portaudio o…
marcusmueller Jan 17, 2021
71b9cbc
grc: optionally show variable names in graph #4109 (#4279)
jasonuher Mar 16, 2021
6a07bc3
uhd: Replace multi_usrp::recv_async_msg() with tx_stream version
mbr0wn Mar 15, 2021
aabde1f
dtv/atsc: create separate plinfo stream ports
mormj Mar 15, 2021
19dec44
dtv/atsc: update examples/hier with new conns
mormj Mar 15, 2021
1eec7a3
dtv/atsc: remove plinfo tag methods
mormj Mar 16, 2021
cb9fe59
uhd: Fix Qt apps (XInitThreads call order, terminate handling)
mbr0wn Jan 24, 2021
f4fc23b
qtgui: Fix segfaulting overflow
ThomasHabets Mar 16, 2021
dd91a45
qtgui: Fix segfaulting overflow in waterfall
ThomasHabets Mar 16, 2021
c317661
gr_modtool add: Correctly handle arglist
dl1ksv Mar 16, 2021
a1a3d86
gr-blocks: Fix Remove DC Spike AutoSync block.
drmpeg Mar 14, 2021
f6fe528
uhd: Fix phase relations plot (Qt issue)
mbr0wn Mar 16, 2021
bd1e4d4
gr-pdu: initial commit with the PDU module
Jan 31, 2021
a8a9913
gr-pdu: move pdu blocks to gr::pdu
Mar 14, 2021
4a3fe85
gr-blocks: remove pdu blocks
Mar 14, 2021
4be63ac
gr-pdu: remove redundant pdu.h
Mar 14, 2021
192c9b2
runtime: add int_t and short_t PDU types
Mar 15, 2021
c50a021
gr-qtgui: Remove unused variables.
drmpeg Mar 19, 2021
98c84ce
gr-filter: Remove clang -Wdefaulted-function-deleted warning.
drmpeg Mar 19, 2021
f3f4055
thrift: replace ::bind with lambda
marcusmueller Mar 19, 2021
2d6109b
blocks: replace ::bind with lambda
marcusmueller Mar 19, 2021
08d2b9d
zeromq: replace ::bind with lambda
marcusmueller Mar 19, 2021
c756805
network: replace ::bind with lambda
marcusmueller Mar 19, 2021
70db884
thrift: application base sptr reset->make_shared
marcusmueller Mar 20, 2021
43bfd85
CMake: Look for MPIR only when no GMP is found, be verbose
marcusmueller Mar 19, 2021
0b03f46
pkg: add packaging for debian/fedora in-tree
mormj Mar 11, 2021
96d590b
Calculate checkbox index from wintype string
dl1ksv Mar 11, 2021
eccba20
blocks: message_debug: vector indices are size_t, not signed int
marcusmueller Mar 19, 2021
ad5beae
blocks: message_debug: avoid refcount modification in 'hot' PMT handling
marcusmueller Mar 19, 2021
3e4e7fe
blocks: message_debug: mutex getting the stored message count
marcusmueller Mar 19, 2021
f40ce52
filter: revert Calculate checkbox index
mormj Mar 23, 2021
9e70451
pkg: add gr-pdu into debian install
mormj Mar 23, 2021
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
76 changes: 76 additions & 0 deletions .github/workflows/pkg-debian.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
name: 'Package-Debian'
on:
workflow_dispatch:
inputs:
build_branch:
description: 'Branch to build from'
required: true
default: 'master'
rev:
description: 'Package revision'
required: true
default: '1'
distribution:
description: 'Target distribution'
required: true
default: 'focal'
jobs:
linux-docker:
runs-on: ubuntu-20.04
# The GH default is 360 minutes (it's also the max as of Feb-2021). However
# we should fail sooner. The only reason to exceed this time is if a test
# hangs.
timeout-minutes: 120
strategy:
# Enabling fail-fast would kill all Dockers if one of them fails. We want
# maximum output.
fail-fast: false
matrix:
# For every distro we want to test here, add one key 'distro' with a
# descriptive name, and one key 'containerid' with the name of the
# container (i.e., what you want to docker-pull)
include:
- distro: 'Ubuntu 20.04'
containerid: 'gnuradio/ci:ubuntu-20.04-3.9'
cxxflags: -Werror
name: ${{ matrix.distro }}
container:
image: ${{ matrix.containerid }}
volumes:
- build_data:/build
options: --cpus 2
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.event.inputs.build_branch }}
- uses: actions/setup-python@v1
with:
python-version: "3.x"
- run: apt-get update && apt-get install -yq devscripts debhelper dh-python
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v3
with:
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
- name: GPG user IDs
run: |
echo "fingerprint: ${{ steps.import_gpg.outputs.fingerprint }}"
echo "keyid: ${{ steps.import_gpg.outputs.keyid }}"
echo "name: ${{ steps.import_gpg.outputs.name }}"
echo "email: ${{ steps.import_gpg.outputs.email }}"
- name: Run Packaging Script
run: |
export NAME="${{secrets.NAME}}"
export EMAIL="${{secrets.EMAIL}}"
export DEBFULLNAME="${{secrets.NAME}}"
export DEBEMAIL="${{secrets.EMAIL}}"
export UBUEMAIL="${{secrets.EMAIL}}"
export DISTRIBUTION="${{ github.event.inputs.distribution }}"
export GITBRANCH="master"
export REV="${{ github.event.inputs.rev }}"
cd /build && sh $GITHUB_WORKSPACE/.packaging/scripts/pkg-debian.sh
- name: Push to Launchpad
run:
cd /build && dput -c $GITHUB_WORKSPACE/.packaging/launchpad/dput.cf $GITBRANCH $(ls *.changes)
76 changes: 76 additions & 0 deletions .github/workflows/pkg-fedora.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
name: 'Package-Fedora'
on:
workflow_dispatch:
inputs:
build_branch:
description: 'Branch to build from'
required: true
default: 'master'
rev:
description: 'Package revision'
required: true
default: '1'
jobs:
linux-docker:
runs-on: ubuntu-20.04
# The GH default is 360 minutes (it's also the max as of Feb-2021). However
# we should fail sooner. The only reason to exceed this time is if a test
# hangs.
timeout-minutes: 240
strategy:
# Enabling fail-fast would kill all Dockers if one of them fails. We want
# maximum output.
fail-fast: false
matrix:
# For every distro we want to test here, add one key 'distro' with a
# descriptive name, and one key 'containerid' with the name of the
# container (i.e., what you want to docker-pull)
include:
- distro: 'Fedora 33'
containerid: 'gnuradio/ci:fedora-33-3.9'
cxxflags: -Werror
name: ${{ matrix.distro }}
container:
image: ${{ matrix.containerid }}
volumes:
- build_data:/build
options: --cpus 2
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.event.inputs.build_branch }}
- uses: actions/setup-python@v1
with:
python-version: "3.x"
- run: dnf install -y fedora-packager copr-cli
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v3
with:
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
- name: GPG user IDs
run: |
echo "fingerprint: ${{ steps.import_gpg.outputs.fingerprint }}"
echo "keyid: ${{ steps.import_gpg.outputs.keyid }}"
echo "name: ${{ steps.import_gpg.outputs.name }}"
echo "email: ${{ steps.import_gpg.outputs.email }}"
- name: Run Packaging Script
run: |
export DISTRIBUTION="fedora"
export GITBRANCH="master"
export REV="${{ github.event.inputs.rev }}"
cd /build && sh $GITHUB_WORKSPACE/.packaging/scripts/pkg-fedora.sh
- name: Archive SRPM
uses: actions/upload-artifact@v2
with:
name: srpm
path: /build/rpmbuild/SRPMS
- name: Save COPR Token
run: cd /build && echo "$COPR_TOKEN" > copr
shell: bash
env:
COPR_TOKEN: ${{secrets.COPR_TOKEN}}
- name: Submit to COPR
run: cd /build && copr-cli --config copr build gnuradio $(ls rpmbuild/SRPMS/*.src.rpm)
Loading