Skip to content

Replace clobber of CFLAGS in configure.ac #533

Replace clobber of CFLAGS in configure.ac

Replace clobber of CFLAGS in configure.ac #533

Workflow file for this run

name: CI - Windows
permissions:
contents: read
on:
pull_request:
paths:
- '**'
- '!README'
- '!INSTALL'
- '!NEWS'
- '!doc/**'
- '!.**'
- '.github/workflows/CI-win.yml'
push:
branches:
- v[0-9].*
- master
jobs:
build-windows:
runs-on: windows-${{ matrix.config.server }}
name: build ${{ matrix.config.TARGET }}
strategy:
fail-fast: false
matrix:
config:
- {toolchain: Visual Studio 17 2022, arch: Win32, server: 2022, TARGET: arm-linux-gnueabihf}
- {toolchain: Visual Studio 17 2022, arch: x64, server: 2022, TARGET: aarch64-linux-gnu}
- {toolchain: Visual Studio 17 2022, arch: x64, server: 2022, TARGET: x86_64-linux-gnu}
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Build
shell: cmd
env:
TARGET: ${{ matrix.config.TARGET }}
run: |
cmake -G "${{ matrix.config.toolchain }}" -A ${{ matrix.config.arch }} -S . -B bin/windows-${{ matrix.config.arch }}/${{ matrix.config.TARGET }}
cmake --build bin/windows-${{ matrix.config.arch }}/${{ matrix.config.TARGET }}