DevelopReleaseLinuxOnly #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DevelopReleaseLinuxOnly | |
on: | |
workflow_dispatch: | |
inputs: | |
plugin_list: | |
description: 'Plugins to include' | |
required: false | |
default: '' | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
# Installation of dependencies is too OS-dependent now, we don't | |
# miss that much by particularizing this in a per-OS basis. | |
build-linux-appimage: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup interactive shell session | |
uses: mxschmitt/action-tmate@v3 | |
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }} | |
- name: Install dependencies | |
uses: "./.github/actions/linuxdeps" | |
- name: Build & Distribute (SigDigger) | |
run: | | |
cd Scripts | |
chmod a+x dist-appimage.sh | |
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH":"$PWD"/deploy-root/lib | |
SIGDIGGER_EMBED_SOAPYSDR=1 BUILDTYPE=Debug ./dist-appimage.sh ${{ github.event.inputs.plugin_list }} | |
cd .. | |
- name: Archive AppImage files | |
uses: actions/upload-artifact@v2 | |
with: | |
name: linux-latest-appimage | |
path: Scripts/*.AppImage | |
do_release: | |
needs: [ build-linux-appimage ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
- name: Download binaries | |
uses: actions/download-artifact@v2 | |
- name: Deploy 'latest' release | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "SigDigger Development Build (${{steps.date.outputs.date}}, GNU/Linux Only)" | |
files: | | |
linux-latest-appimage/*.AppImage |