improved zone streaming #74
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: libzedmd | |
on: | |
push: | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
version: | |
name: Detect version | |
runs-on: ubuntu-latest | |
outputs: | |
tag: ${{ steps.version.outputs.tag }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- id: version | |
run: | | |
VERSION_MAJOR=$(grep -Eo "ZEDMD_VERSION_MAJOR\s+[0-9]+" src/ZeDMD.h | grep -Eo "[0-9]+") | |
VERSION_MINOR=$(grep -Eo "ZEDMD_VERSION_MINOR\s+[0-9]+" src/ZeDMD.h | grep -Eo "[0-9]+") | |
VERSION_PATCH=$(grep -Eo "ZEDMD_VERSION_PATCH\s+[0-9]+" src/ZeDMD.h | grep -Eo "[0-9]+") | |
TAG="${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}" | |
echo "${TAG}" | |
echo "tag=${TAG}" >> $GITHUB_OUTPUT | |
build: | |
name: Build libzedmd-${{ matrix.platform }} | |
runs-on: ${{ matrix.os }} | |
needs: [ version ] | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: windows-latest | |
platform: win-x64 | |
platform-name: x64 | |
- os: windows-latest | |
platform: win-x86 | |
platform-name: Win32 | |
- os: macos-latest | |
platform: macOS-x64 | |
- os: macos-latest | |
platform: macOS-arm64 | |
- os: macos-latest | |
platform: ios-arm64 | |
- os: macos-latest | |
platform: tvos-arm64 | |
- os: ubuntu-latest | |
platform: linux-x64 | |
- os: ubuntu-latest | |
platform: android-arm64-v8a | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout libserialport | |
uses: actions/checkout@v3 | |
with: | |
repository: PPUC/libserialport | |
path: libserialport | |
- run: mv libserialport ../libserialport | |
- name: Build libzedmd-${{ matrix.platform }} | |
run: | | |
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then | |
if [[ "${{ matrix.platform-name }}" == "Win32" ]]; then | |
cmake -G "Visual Studio 17 2022" -A ${{ matrix.platform-name }} -B build -DUSE_WIN32=ON | |
else | |
cmake -G "Visual Studio 17 2022" -A ${{ matrix.platform-name }} -B build | |
fi | |
cmake --build build --config Release | |
elif [[ "${{ matrix.os }}" == "macos-latest" ]]; then | |
if [[ "${{ matrix.platform }}" == "macOS-arm64" ]]; then | |
cmake -DCMAKE_BUILD_TYPE=Release -B build/Release -DUSE_OSXARM=ON | |
elif [[ "${{ matrix.platform }}" == "macOS-x64" ]]; then | |
cmake -DCMAKE_BUILD_TYPE=Release -B build/Release -DUSE_OSXINTEL=ON | |
elif [[ "${{ matrix.platform }}" == "ios-arm64" ]]; then | |
cmake -DCMAKE_BUILD_TYPE=Release -B build/Release -DUSE_IOS=ON | |
elif [[ "${{ matrix.platform }}" == "tvos-arm64" ]]; then | |
cmake -DCMAKE_BUILD_TYPE=Release -B build/Release -DUSE_TVOS=ON | |
fi | |
cmake --build build/Release | |
elif [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then | |
if [[ "${{ matrix.platform }}" == "android-arm64-v8a" ]]; then | |
cmake -DCMAKE_BUILD_TYPE=Release -B build/Release -DUSE_ANDROID=ON | |
else | |
cmake -DCMAKE_BUILD_TYPE=Release -B build/Release | |
fi | |
cmake --build build/Release | |
fi | |
- run: | | |
mkdir tmp | |
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then | |
cp build/Release/zedmd* tmp | |
else | |
cp build/Release/libzedmd* tmp | |
fi | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: libzedmd-${{ needs.version.outputs.tag }}-${{ matrix.platform }} | |
path: tmp | |
post-build: | |
runs-on: macos-latest | |
needs: [ version, build ] | |
name: Build libzedmd-macOS | |
steps: | |
- uses: actions/download-artifact@v3 | |
- run: | | |
mkdir libzedmd-${{ needs.version.outputs.tag }}-macOS | |
lipo -create -output libzedmd-${{ needs.version.outputs.tag }}-macOS/libzedmd.dylib \ | |
libzedmd-${{ needs.version.outputs.tag }}-macOS-x64/libzedmd.dylib \ | |
libzedmd-${{ needs.version.outputs.tag }}-macOS-arm64/libzedmd.dylib | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: libzedmd-${{ needs.version.outputs.tag }}-macOS | |
path: libzedmd-${{ needs.version.outputs.tag }}-macOS | |
- name: Package | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
zip -r libzedmd-${{ needs.version.outputs.tag }}-win-x64.zip libzedmd-${{ needs.version.outputs.tag }}-win-x64 | |
zip -r libzedmd-${{ needs.version.outputs.tag }}-win-x86.zip libzedmd-${{ needs.version.outputs.tag }}-win-x86 | |
zip -r libzedmd-${{ needs.version.outputs.tag }}-ios-arm64.zip libzedmd-${{ needs.version.outputs.tag }}-ios-arm64 | |
zip -r libzedmd-${{ needs.version.outputs.tag }}-tvos-arm64.zip libzedmd-${{ needs.version.outputs.tag }}-tvos-arm64 | |
zip -r libzedmd-${{ needs.version.outputs.tag }}-linux-x64.zip libzedmd-${{ needs.version.outputs.tag }}-linux-x64 | |
zip -r libzedmd-${{ needs.version.outputs.tag }}-android-arm64-v8a.zip libzedmd-${{ needs.version.outputs.tag }}-android-arm64-v8a | |
zip -r libzedmd-${{ needs.version.outputs.tag }}-macOS.zip libzedmd-${{ needs.version.outputs.tag }}-macOS | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
draft: true | |
files: | | |
libzedmd-${{ needs.version.outputs.tag }}-win-x64.zip | |
libzedmd-${{ needs.version.outputs.tag }}-win-x86.zip | |
libzedmd-${{ needs.version.outputs.tag }}-ios-arm64.zip | |
libzedmd-${{ needs.version.outputs.tag }}-tvos-arm64.zip | |
libzedmd-${{ needs.version.outputs.tag }}-linux-x64.zip | |
libzedmd-${{ needs.version.outputs.tag }}-android-arm64-v8a.zip | |
libzedmd-${{ needs.version.outputs.tag }}-macOS.zip |