Daily build #1048
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: Daily build | |
on: | |
schedule: | |
- cron: 0 0 * * * # Every day at midnight (UTC) | |
workflow_dispatch: | |
jobs: | |
determine-version: | |
runs-on: ubuntu-latest | |
outputs: | |
nugetVer: ${{ steps.nbgv.outputs.NuGetPackageVersion }} | |
asmVer: ${{ steps.nbgv.outputs.AssemblyFileVersion }} | |
infoVer: ${{ steps.nbgv.outputs.AssemblyInformationalVersion }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Nerdbank.GitVersioning | |
id: nbgv | |
uses: dotnet/nbgv@v0.4.2 | |
daily-build: | |
needs: [determine-version] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rid: [linux_x64, win_x64, osx_x64, osx_arm64] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: global.json | |
- name: Restore | |
run: | | |
chmod +x build.sh | |
./build.sh restore | |
- name: Build | |
run: | | |
./build.sh publish \ | |
--runtime ${{ matrix.rid }} \ | |
--skip restore \ | |
--version ${{ needs.determine-version.outputs.nugetVer }} \ | |
--assembly-version ${{ needs.determine-version.outputs.asmVer }} \ | |
--informational-version ${{ needs.determine-version.outputs.infoVer }} | |
- if: ${{ matrix.rid == 'linux_x64' }} | |
name: Download libOpenCvSharpExtern.so | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
PACKAGES_JSON=`dotnet list src/Beutl.Engine/Beutl.Engine.csproj package --framework net9.0 --format json` | |
#4.9.0.2024 | |
OPENCVSHARP_VERSION=`echo $PACKAGES_JSON | jq -r '.projects[0].frameworks[0].topLevelPackages | map(select(.id == "OpenCvSharp4"))[0].requestedVersion'` | |
echo $OPENCVSHARP_VERSION | |
#4.9.0 | |
OPENCV_VERSION=`echo $OPENCVSHARP_VERSION | cut -d '.' -f 1-3` | |
echo $OPENCV_VERSION | |
#GitのタグとNuGetのバージョンが違う場合があるので | |
RELEASES_JSON=`gh api -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /repos/shimat/opencvsharp/releases` | |
FILTER='map(select(.tag_name | startswith("'$OPENCV_VERSION'")))[0].tag_name' | |
OPENCVSHARP_TAG=`echo "$RELEASES_JSON" | jq -r "$FILTER"` | |
#ダウンロード | |
RELEASE=`gh api -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /repos/indigo-san/opencvsharp-extern-builds/releases/tags/$OPENCVSHARP_TAG` | |
ASSET_ID=`echo "$RELEASE" | jq '.assets | map(select(.name == "libOpenCvSharpExtern.so"))[0].id'` | |
cd output/Beutl | |
gh api -H "Accept: application/octet-stream" -H "X-GitHub-Api-Version: 2022-11-28" /repos/indigo-san/opencvsharp-extern-builds/releases/assets/$ASSET_ID > libOpenCvSharpExtern.so | |
- name: Zip | |
run: | | |
./build.sh zip \ | |
--runtime ${{ matrix.rid }} \ | |
--skip publish \ | |
--version ${{ needs.determine-version.outputs.nugetVer }} | |
- name: Save | |
uses: actions/upload-artifact@v4 | |
with: | |
name: beutl_${{ matrix.rid }} | |
path: ./artifacts/ |