Skip to content

Workflow file for this run

on: push
jobs:
buildLinux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Native Linux
run: |
make all
ls -ao
# - uses: actions/upload-artifact@v3
# with:
# path: Native/libmikktspace.so
# name: linux_x64_libmikktspace.so
# retention-days: 1
# - name: Build Native Arm/Android
# run: |
# cd Native/
# ndk-build
# - uses: actions/upload-artifact@v3
# with:
# path: Native/libs/armeabi-v7a/libmikktspace.so
# name: android_ARMv7_libmikktspace.so
# retention-days: 1
buildWindows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build Native Windows
run: |
make all
dir
# - name: Setup .NET 7
# uses: actions/setup-dotnet@v3
# with:
# dotnet-version: 7.0.x
# - name: Build Managed
# run: |
# cd CSharp
# dotnet restore
# dotnet build --configuration Release --no-restore