FreeDATA/.github/workflows/build_multiplatform.yml

352 lines
12 KiB
YAML
Raw Normal View History

2022-07-06 13:40:57 +00:00
name: Build_Multiplatform
on: [push]
jobs:
BUILD_AMD64:
name: Build codec2 for x86/x64 devices
2022-07-06 13:40:57 +00:00
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
2023-10-22 09:13:02 +00:00
os: [ubuntu-20.04, ubuntu-22.04, macos-latest, macos-12]
platform: [{name: "native"}, {name: "Windows", file: "dll"}]
architecture: [i686-w64-mingw32, x86_64-w64-mingw32]
2022-07-06 13:40:57 +00:00
include:
- os: ubuntu-20.04
2023-07-30 16:27:01 +00:00
libcodec2_name: libcodec2.so.1.2
libcodec2_os_name: libcodec2_ubuntu-2004
libcodec2_filetype: so
2022-07-06 13:40:57 +00:00
generator: Unix Makefiles
shell: bash
- os: ubuntu-22.04
2023-07-30 16:27:01 +00:00
libcodec2_name: libcodec2.so.1.2
libcodec2_os_name: libcodec2_ubuntu-2204
libcodec2_filetype: so
2022-07-06 13:40:57 +00:00
generator: Unix Makefiles
shell: bash
- os: macos-latest
2023-07-30 16:27:01 +00:00
libcodec2_name: libcodec2.1.2.dylib
libcodec2_os_name: libcodec2_macos-latest
libcodec2_filetype: dylib
generator: Unix Makefiles
shell: bash
2022-07-06 13:40:57 +00:00
- os: macos-12
2023-07-30 16:27:01 +00:00
libcodec2_name: libcodec2.1.2.dylib
libcodec2_os_name: libcodec2_macos-12
libcodec2_filetype: dylib
2022-07-06 13:40:57 +00:00
generator: Unix Makefiles
shell: bash
steps:
- name: Build codec2 on ${{ matrix.os }} for ${{ matrix.platform.name }}
if: ${{startsWith(matrix.platform.name, 'native') }}
2022-07-06 13:40:57 +00:00
run: |
git clone https://github.com/drowe67/codec2.git
cd codec2
mkdir build
mkdir tempfiles
2022-07-06 13:40:57 +00:00
cd build
2023-07-30 16:19:49 +00:00
cmake -DCMAKE_BUILD_TYPE=Release ../
2022-07-06 13:40:57 +00:00
make
mv src/${{ matrix.libcodec2_name }} ../tempfiles/libcodec2_${{ matrix.os }}_${{ matrix.platform.name }}.${{ matrix.libcodec2_filetype }}
- name: LIST ALL FILES ${{ github.workspace }}
run: ls -R ${{ github.workspace }}
- uses: actions/upload-artifact@v3
if: ${{startsWith(matrix.platform.name, 'native') }}
with:
name: libcodec2_${{ matrix.os }}_${{ matrix.platform.name }}.${{ matrix.libcodec2_filetype }}
# path: ${{ github.workspace }}/codec2/tempfiles/libcodec2_${{ matrix.os }}_${{ matrix.platform.name }}.${{ matrix.libcodec2_filetype }}
path: ${{ github.workspace }}/codec2/tempfiles/
2022-07-06 13:40:57 +00:00
2022-09-18 20:53:36 +00:00
- name: Build codec2 ${{ matrix.platform.name }} ${{ matrix.architecture }}
if: ${{startsWith(matrix.os, 'ubuntu-20') && !startsWith(matrix.platform.name, 'native') }}
2022-07-06 13:40:57 +00:00
run: |
sudo apt install build-essential mingw-w64 g++-mingw-w64 make cmake
2022-07-06 13:40:57 +00:00
git clone https://github.com/drowe67/codec2.git
cd codec2
2022-07-12 09:04:56 +00:00
mkdir tempfiles
mkdir build_w32
cd build_w32
echo 'set(CMAKE_SYSTEM_NAME ${{ matrix.platform.name }})' > toolchain-ubuntu-mingw32.cmake
echo 'set(CMAKE_C_COMPILER ${{ matrix.architecture }}-gcc)' >> toolchain-ubuntu-mingw32.cmake
echo 'set(CMAKE_CXX_COMPILER ${{ matrix.architecture }}-g++)' >> toolchain-ubuntu-mingw32.cmake
2022-07-12 09:04:56 +00:00
echo 'set(CMAKE_RC_COMPILER ${{ matrix.architecture }}-windres)' >> toolchain-ubuntu-mingw32.cmake
echo 'set(CMAKE_FIND_ROOT_PATH /usr/${{ matrix.architecture }})' >> toolchain-ubuntu-mingw32.cmake
echo 'set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)' >> toolchain-ubuntu-mingw32.cmake
echo 'set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)' >> toolchain-ubuntu-mingw32.cmake
echo 'set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)' >> toolchain-ubuntu-mingw32.cmake
echo 'set(CMAKE_SHARED_LINKER_FLAGS "-static-libgcc -static-libstdc++ -static")' >> toolchain-ubuntu-mingw32.cmake
2023-07-30 16:19:49 +00:00
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=toolchain-ubuntu-mingw32.cmake ..
2022-07-06 13:40:57 +00:00
make
mv src/libcodec2.${{ matrix.platform.file }} ../tempfiles/libcodec2_${{ matrix.platform.name }}_${{ matrix.architecture }}.${{ matrix.platform.file }}
2022-07-06 13:40:57 +00:00
- uses: actions/upload-artifact@v3
if: ${{startsWith(matrix.os, 'ubuntu-20') && !startsWith(matrix.platform.name, 'native') }}
2022-07-06 13:40:57 +00:00
with:
name: libcodec2_${{ matrix.os }}_${{ matrix.platform.name }}_${{ matrix.architecture }}.${{ matrix.platform.file }}
path: codec2/tempfiles/*
BUILD_ARM:
2022-07-06 13:40:57 +00:00
# The host should always be linux
2022-09-06 14:18:08 +00:00
runs-on: ubuntu-latest
name: Build codec2 for ARM devices
2022-07-06 13:40:57 +00:00
# Run steps on a matrix of 2 arch/distro combinations
2022-07-06 13:40:57 +00:00
strategy:
matrix:
include:
- arch: armv7
distro: bullseye
2022-09-06 17:07:00 +00:00
libcodec2_os_name: libcodec2_bullseye_armv7.so
2022-09-06 14:22:08 +00:00
- arch: armv7
distro: ubuntu_latest
2022-09-06 17:07:00 +00:00
libcodec2_os_name: libcodec2_ubuntu_latest_armv7.so
2022-07-06 13:40:57 +00:00
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
2022-07-06 13:40:57 +00:00
- uses: uraimo/run-on-arch-action@v2
name: Build artifact
id: build
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}
# Not required, but speeds up builds
githubToken: ${{ github.token }}
# Create an artifacts directory
setup: |
mkdir -p "${PWD}/artifacts"
# Mount the artifacts directory as /artifacts in the container
dockerRunArgs: |
--volume "${PWD}/artifacts:/artifacts"
# Pass some environment variables to the container
env: | # YAML, but pipe character is necessary
2022-09-06 17:07:00 +00:00
artifact_name: ${{ matrix.libcodec2_os_name }}
2022-07-06 13:40:57 +00:00
# The shell to run commands with in the container
shell: /bin/sh
# Install some dependencies in the container. This speeds up builds if
# you are also using githubToken. Any dependencies installed here will
# be part of the container image that gets cached, so subsequent
# builds don't have to re-install them. The image layer is cached
# publicly in your project's package repository, so it is vital that
# no secrets are present in the container state or logs.
install: |
case "${{ matrix.distro }}" in
ubuntu*|jessie|stretch|buster|bullseye)
apt-get update -q -y
apt-get install -q -y git build-essential cmake gcc g++
cmake --version
2022-07-06 13:40:57 +00:00
;;
fedora*)
dnf -y update
dnf -y install git which make cmake gcc-c++ gcc
cmake --version
2022-07-06 13:40:57 +00:00
;;
alpine*)
apk update
apk add git cmake gcc g++
cmake --version
2022-07-06 13:40:57 +00:00
;;
esac
# Produce a binary artifact and place it in the mounted volume
run: |
2022-09-20 06:04:38 +00:00
2022-07-06 13:40:57 +00:00
git clone https://github.com/drowe67/codec2.git
cd codec2
2023-07-30 16:39:38 +00:00
git checkout main
2022-07-06 13:40:57 +00:00
mkdir build
cd build
cmake ../
make
2023-07-30 16:33:46 +00:00
mv ./src/libcodec2.so.1.2 /artifacts/${artifact_name}
2022-07-06 13:40:57 +00:00
2022-09-18 20:53:36 +00:00
- name: Show recursive PWD/artifacts
2022-07-06 13:40:57 +00:00
# Items placed in /artifacts in the container will be in
# ${PWD}/artifacts on the host.
run: ls -al "${PWD}/artifacts"
2022-09-06 17:07:00 +00:00
2022-07-06 13:40:57 +00:00
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.libcodec2_os_name }}
2022-09-06 15:02:11 +00:00
#path: $GITHUB_WORKSPACE/codec2/artifacts/*
2022-09-06 17:07:00 +00:00
path: artifacts/*
2022-07-06 13:40:57 +00:00
build_i686_x64_release:
2023-10-23 11:06:55 +00:00
needs: [BUILD_AMD64, BUILD_ARM]
name: Build FreeDATA packages
2022-07-06 13:40:57 +00:00
runs-on: ${{ matrix.os }}
strategy:
2023-01-21 14:48:54 +00:00
fail-fast: false
2022-07-06 13:40:57 +00:00
matrix:
2023-10-22 09:13:02 +00:00
os: [ubuntu-20.04, macos-latest, windows-latest]
2022-07-06 13:40:57 +00:00
include:
- os: ubuntu-20.04
2023-10-20 19:13:55 +00:00
zip_name: ubuntu_modem
2022-07-06 13:40:57 +00:00
generator: Unix Makefiles
2022-09-06 15:02:11 +00:00
daemon_binary_name: freedata-daemon
2023-10-20 19:13:55 +00:00
modem_binary_name: freedata-modem
2022-10-04 06:58:02 +00:00
electron_parameters: "-p always"
2022-07-06 13:40:57 +00:00
- os: macos-latest
2023-10-20 19:13:55 +00:00
zip_name: macos_modem
2022-07-06 13:40:57 +00:00
generator: Unix Makefiles
2022-09-06 15:02:11 +00:00
daemon_binary_name: freedata-daemon
2023-10-20 19:13:55 +00:00
modem_binary_name: freedata-modem
2022-10-04 06:58:02 +00:00
electron_parameters: "-p always"
2022-07-06 13:40:57 +00:00
- os: windows-latest
2023-10-20 19:13:55 +00:00
zip_name: windows_modem
2022-07-06 13:40:57 +00:00
generator: Visual Studio 16 2019
daemon_binary_name: freedata-daemon.exe
2023-10-20 19:13:55 +00:00
modem_binary_name: freedata-modem.exe
2022-10-04 06:58:02 +00:00
electron_parameters: "-p always --x64 --ia32"
2022-07-06 13:40:57 +00:00
steps:
- name: Checkout code for ${{ matrix.platform.name }}
uses: actions/checkout@v4
2022-07-06 13:40:57 +00:00
with:
repository: DJ2LS/FreeDATA
2023-08-04 07:25:46 +00:00
- name: Set up Python 3.11
uses: actions/setup-python@v4
2022-07-06 13:40:57 +00:00
with:
2023-08-04 07:25:46 +00:00
python-version: "3.11"
2022-07-06 13:40:57 +00:00
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v4
with:
2023-08-06 20:47:11 +00:00
node-version: 18.17
- name: Create modem/dist
working-directory: modem
2022-09-12 16:17:35 +00:00
run: |
2022-09-18 20:53:36 +00:00
mkdir -p dist
2022-09-12 16:17:35 +00:00
- name: Create modem/dist/modem
working-directory: modem
run: |
2023-10-20 19:13:55 +00:00
mkdir -p dist/modem
2023-10-20 19:13:55 +00:00
##- name: Download libcodec2 artifact Modem DIST
## uses: actions/download-artifact@v3
## with:
## path: modem/dist/codec2
- name: create modem/lib/codec2
working-directory: modem/lib/
run: |
mkdir codec2
2023-10-20 19:13:55 +00:00
- name: Download libcodec2 artifact Modem LIB
uses: actions/download-artifact@v3
2022-09-12 16:17:35 +00:00
with:
path: modem/lib/codec2
2022-09-12 16:17:35 +00:00
2022-07-06 13:40:57 +00:00
- name: Install Linux dependencies
# if: matrix.os == 'ubuntu-20.04'
if: ${{startsWith(matrix.os, 'ubuntu')}}
2022-07-06 13:40:57 +00:00
run: |
sudo apt install -y portaudio19-dev libhamlib-dev libhamlib-utils build-essential cmake python3-libhamlib2 patchelf
2022-07-06 13:40:57 +00:00
2022-09-18 20:53:36 +00:00
- name: Install MacOS pyAudio
if: ${{startsWith(matrix.os, 'macos')}}
2022-07-06 13:40:57 +00:00
run: |
brew install portaudio
python -m pip install --upgrade pip
pip3 install pyaudio
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
2022-07-06 13:40:57 +00:00
2023-01-21 11:03:13 +00:00
- name: Add MacOS certs
if: ${{startsWith(matrix.os, 'macos')}}
run: chmod +x add-osx-cert.sh && ./add-osx-cert.sh
env:
CERTIFICATE_OSX_APPLICATION: ${{ secrets.CERTIFICATE_OSX_APPLICATION }}
CERTIFICATE_PASSWORD: ${{ secrets.CERTIFICATE_PASSWORD }}
2022-07-06 13:40:57 +00:00
2022-10-12 10:00:54 +00:00
- name: Build binaries Linux and Windows
working-directory: modem
run: |
python3 -m nuitka --enable-plugin=numpy --remove-output --assume-yes-for-downloads --standalone server.py
2022-07-06 13:40:57 +00:00
- name: LIST ALL FILES
run: ls -R
2022-07-06 13:40:57 +00:00
2023-01-22 18:28:34 +00:00
- name: Download Portaudio binaries Linux macOS
if: ${{!startsWith(matrix.os, 'windows')}}
working-directory: modem
2022-09-06 14:06:57 +00:00
run: |
if ! test -d "server.dist/modem/_sounddevice_data"; then
2023-10-20 19:13:55 +00:00
git clone https://github.com/spatialaudio/portaudio-binaries dist/modem/_sounddevice_data/portaudio-binaries
2023-01-22 18:28:34 +00:00
fi
- name: Download Portaudio binaries Windows
if: ${{startsWith(matrix.os, 'windows')}}
working-directory: modem
2023-01-22 18:28:34 +00:00
run: |
if(Test-Path -Path "server.dist/modem/_sounddevice_data"){
2023-01-22 18:28:34 +00:00
echo "sounddevice folder already exists"
} else {
2023-10-20 19:13:55 +00:00
git clone https://github.com/spatialaudio/portaudio-binaries dist/modem/_sounddevice_data/portaudio-binaries
2023-01-22 18:28:34 +00:00
}
- name: LIST ALL FILES
run: ls -R
2022-09-06 14:06:57 +00:00
2023-01-21 12:01:35 +00:00
- name: cleanup on macos before code signing
if: ${{startsWith(matrix.os, 'macos')}}
run: |
ls -l
# find . -type d -name .git -exec rm -r {} \;
find . -type d -o -name ".git" -delete
2023-01-21 12:01:35 +00:00
2023-10-22 19:55:34 +00:00
- name: Electron Builder
2023-10-22 19:06:34 +00:00
env: # Setting environment variables for the entire job
GH_TOKEN: ${{ secrets.github_token }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
2023-10-22 20:46:13 +00:00
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
2023-10-22 18:51:21 +00:00
working-directory: gui
run: |
npm i
2023-10-23 07:19:16 +00:00
npm run release
2023-10-22 17:43:22 +00:00
2023-10-20 19:13:55 +00:00
- name: Compress Modem
2022-07-06 13:40:57 +00:00
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: '${{ matrix.zip_name }}.zip'
directory: ./modem/server.dist
2022-07-06 13:40:57 +00:00
path: .
# exclusions: '*.git* /*node_modules/* .editorconfig'
2022-07-06 13:40:57 +00:00
2023-10-20 19:13:55 +00:00
- name: Release Modem
2022-07-06 13:40:57 +00:00
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
2023-10-23 12:39:43 +00:00
draft: true
files: ./modem/server.dist/${{ matrix.zip_name }}.zip
2022-07-06 13:40:57 +00:00
- name: LIST ALL FILES
run: ls -R