Update to studio 11 #16
Workflow file for this run
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
# Workflow to automatically compile a Linux/Windows library on commit/push | |
name: Build on push | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events, but only for the master branch we'll create .zip files | |
on: | |
[push, pull_request] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This job builds the plugin for our target platforms | |
build: | |
name: Building for ${{ matrix.platform }} (${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
# faster testing by disabling the others... | |
- os: macos-latest | |
platform: macos | |
- os: windows-latest | |
platform: windows | |
steps: | |
- name: Setup actions | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Add msbuild to PATH (Windows) | |
uses: microsoft/setup-msbuild@v2 | |
with: | |
msbuild-architecture: x64 | |
if: matrix.platform == 'windows' | |
- name: Get SDK (MacOS) | |
run: | | |
omnis_sdk=$(curl -s "https://filestore.omnis.net/omnisrestservlet/ws/5975/api/file_browser/browser/file?file=/OmnisStudio/Studio1100_36251/SDK/macOS-SDK-11-36251.dmg&browsertype=0&odppid=blank" | awk {'print $1'}) | |
curl -O "$omnis_sdk" | |
hdiutil attach macOS-SDK-11-36251.dmg | |
cp -a /volumes/macOS-SDK-11-36251/macOS_SDK_11_36251/. thirdparty/omnis.sdk/mac/ | |
hdiutil detach /volumes/macOS-SDK-11-36251 | |
if: matrix.platform == 'macos' | |
- name: Get SDK (Windows) | |
run: | | |
$response = Invoke-WebRequest -uri "https://filestore.omnis.net/omnisrestservlet/ws/5975/api/file_browser/browser/file?file=/OmnisStudio/Studio1100_36251/SDK/Windows-SDK-11-36251-x64.zip&browsertype=0&odppid=blank" | |
$omnissdk = [System.Text.Encoding]::UTF8.GetString($response.content) | |
Invoke-WebRequest -uri $omnissdk -OutFile WindowsSDK.zip | |
mkdir WindowsSDK | |
cd WindowsSDK | |
tar -xf ../WindowsSDK.zip | |
cd .. | |
xcopy /E /I WindowsSDK\* thirdparty\omnis.sdk\win\ | |
if: matrix.platform == 'windows' | |
- name: Build (MacOS) | |
run: | | |
xcodebuild -project bgwidgets.xcodeproj build | |
if: matrix.platform == 'macos' | |
- name: Build (Windows) | |
run: | | |
MSBuild bgwidgets.vcxproj /property:Platform=x64 /property:Configuration="Release" | |
if: matrix.platform == 'windows' | |
- name: Upload build files (artifacts) (MacOS) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: xcomp-macos | |
path: | | |
build/release | |
if: matrix.platform == 'macos' | |
- name: Upload build files (artifacts) (Windows) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: xcomp-windows | |
path: | | |
build/Release_x64/xcomp/bgwidgets.dll | |
if: matrix.platform == 'windows' | |
# This job collects the build output and assembles the final asset (artifact) | |
asset: | |
name: Assembling the asset (artifact) | |
runs-on: ubuntu-20.04 | |
needs: build | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- name: Download all workflow run artifacts | |
uses: actions/download-artifact@v4 | |
- name: Copy files to destination | |
run: | | |
mkdir bgwidgets | |
mkdir bgwidgets/macos | |
mkdir bgwidgets/windows | |
cp -a xcomp-macos/. bgwidgets/macos/ | |
cp xcomp-windows/bgwidgets.dll bgwidgets/windows/ | |
- name: Get tag name | |
run: | | |
echo "GITHUB_SHA_SHORT=$(echo ${GITHUB_REF##*/})" >> $GITHUB_ENV | |
if: startsWith(github.ref, 'refs/tags') | |
- name: Zip asset | |
run: | | |
zip -qq -r bgwidgets.zip bgwidgets/. | |
- name: Create and upload asset | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifacts: "bgwidgets.zip" | |
token: ${{ secrets.GITHUB_TOKEN }} | |