32 Bit Support on Windows (#114) #227
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: CallbackFunctions | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
paths: | |
- 'src/FMI2/callbackFunctions/**' | |
jobs: | |
build-callbackFunctions: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
arch: [''] | |
include: | |
- os: windows-latest | |
arch: -A Win32 | |
env: | |
BUILD_TYPE: RelWithDebInfo | |
CMAKE_SOURCE_DIR: ${{github.workspace}}/src/FMI2/callbackFunctions | |
CMAKE_INSTALL_DIR: ${{github.workspace}}/src/FMI2/callbackFunctions | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Configure CMake | |
run: cmake -S ${{env.CMAKE_SOURCE_DIR}}/callbackFunctions -B ${{env.CMAKE_SOURCE_DIR}}/callbackFunctions/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ${{ matrix.arch }} | |
- name: Build C++ Sources | |
run: cmake --build ${{env.CMAKE_SOURCE_DIR}}/callbackFunctions/build --config ${{env.BUILD_TYPE}} --target install | |
- name: Test callback function (Windows) | |
if: matrix.os == 'windows-latest' | |
run: ${{env.CMAKE_SOURCE_DIR}}/callbackFunctions/build/${{env.BUILD_TYPE}}/test.exe | |
- name: Test callback function (Unix) | |
if: matrix.os != 'windows-latest' | |
run: ${{env.CMAKE_SOURCE_DIR}}/callbackFunctions/build/test | |
- name: Archive production artifacts (win) | |
if: success() && matrix.os == 'windows-latest' && matrix.arch == '' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: callbackFunctions-win-binaries | |
path: src/FMI2/callbackFunctions/binaries/win64/ | |
- name: Archive production artifacts (win32) | |
if: success() && matrix.os == 'windows-latest' && matrix.arch != '' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: callbackFunctions-win32-binaries | |
path: src/FMI2/callbackFunctions/binaries/win32/ | |
- name: Archive production artifacts (linux) | |
if: success() && matrix.os == 'ubuntu-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: callbackFunctions-linux-binaries | |
path: src/FMI2/callbackFunctions/binaries/linux64/ | |
- name: Archive production artifacts (darwin) | |
if: success() && matrix.os == 'macos-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: callbackFunctions-mac-binaries | |
path: src/FMI2/callbackFunctions/binaries/darwin64/ | |
commit-callbackFunctions: | |
needs: build-callbackFunctions | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Download windows binaries | |
uses: actions/download-artifact@v4 | |
with: | |
name: callbackFunctions-win-binaries | |
path: src/FMI2/callbackFunctions/binaries/win64/ | |
- name: Download windows x86 binaries | |
uses: actions/download-artifact@v4 | |
with: | |
name: callbackFunctions-win32-binaries | |
path: src/FMI2/callbackFunctions/binaries/win32/ | |
- name: Download linux binaries | |
uses: actions/download-artifact@v4 | |
with: | |
name: callbackFunctions-linux-binaries | |
path: src/FMI2/callbackFunctions/binaries/linux64/ | |
- name: Download darwin binaries | |
uses: actions/download-artifact@v4 | |
with: | |
name: callbackFunctions-mac-binaries | |
path: src/FMI2/callbackFunctions/binaries/darwin64/ | |
- name: "Auto commit" | |
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch'}} | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update callbackFunctions | |
push_options: '--force-with-lease' | |