-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from BastiaanOlij/omnis_studio_102
Changing build system to Studio 10.2 with M1 support
- Loading branch information
Showing
16 changed files
with
240 additions
and
199 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
|
||
|
||
# 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@v2 | ||
with: | ||
submodules: 'recursive' | ||
|
||
- name: Add msbuild to PATH (Windows) | ||
uses: microsoft/[email protected] | ||
with: | ||
msbuild-architecture: x64 | ||
if: matrix.platform == 'windows' | ||
|
||
- name: Get SDK (MacOS) | ||
run: | | ||
curl -O "ftp://ftp.omnis.net/OmnisStudio/Studio102_31315/SDK/osx64/OSX-SDK-10.2-31315.dmg" | ||
hdiutil attach OSX-SDK-10.2-31315.dmg | ||
cp -a /volumes/OSX-SDK-10.2-31315/OSX-SDK-10.2-31315/. thirdparty/omnis.sdk/mac/ | ||
hdiutil detach /volumes/OSX-SDK-10.2-31315 | ||
if: matrix.platform == 'macos' | ||
|
||
- name: Get SDK (Windows) | ||
run: | | ||
curl -O "ftp://ftp.omnis.net/OmnisStudio/Studio102_31315/SDK/windows/Windows-SDK-10.2-31315-x86-x64.zip" | ||
tar -xf Windows-SDK-10.2-31315-x86-x64.zip | ||
xcopy /E /I Windows-SDK-10.2-31315-x86-x64\* 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="UNICODE Release" | ||
if: matrix.platform == 'windows' | ||
|
||
- name: Upload build files (artifacts) (MacOS) | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: xcomp-macos | ||
path: | | ||
_OSXUnicode | ||
if: matrix.platform == 'macos' | ||
|
||
- name: Upload build files (artifacts) (Windows) | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: xcomp-windows | ||
path: | | ||
URel64/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@v2 | ||
- 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 }} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
bgwidgets.xcodeproj/xcuserdata | ||
bgwidgets.xcodeproj/project.xcworkspace | ||
# mac | ||
_OSXUnicodeDbg | ||
_OSXUnicode | ||
UnicodeCore.build | ||
bgwidgets.xcodeproj/* | ||
!bgwidgets.xcodeproj/project.pbxproj | ||
.DS_Store | ||
|
||
#windows | ||
Release | ||
UDeb | ||
UDeb64 | ||
URel | ||
URel64 | ||
UnicodeCore.build | ||
*.opensdf | ||
*.sdf | ||
*.suo | ||
*.user | ||
UDeb64 | ||
.vs | ||
.DS_Store | ||
*.ncb | ||
/*.suo | ||
/*.sln | ||
/*.user | ||
/*.sdf |
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
Oops, something went wrong.