Skip to content

Fix bug in workflow and switch to danoli freeimage #10

Fix bug in workflow and switch to danoli freeimage

Fix bug in workflow and switch to danoli freeimage #10

Workflow file for this run

name: Build assimp
on:
push:
paths:
- .github/actions/build-package/action.yaml
- .github/workflows/build-assimp.yaml
- packages/assimp/**
- build.py
- scripts/tools.py
jobs:
build:
runs-on: ${{ matrix.cfg.os }}
env:
PACKAGE: assimp
strategy:
fail-fast: false
matrix:
cfg:
- { os: ubuntu-20.04, triple: linux-x64-clang7 }
- { os: ubuntu-20.04, triple: linux-x64-gcc7 }
- { os: windows-2022, triple: windows-x64-mingw64 }
- { os: windows-2022, triple: windows-x64-msvc }
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build package
uses: ./.github/actions/build-package