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: 63 additions & 0 deletions .github/workflows/pkg-debian.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: 'Package-Debian'
on:
push:
branches:
- pkg-master
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
- 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="focal"
export GITBRANCH="master"
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)
67 changes: 67 additions & 0 deletions .github/workflows/pkg-fedora.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: 'Package-Fedora'
on:
pull_request:
branches:
- pkg-master
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: '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
- 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"
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