Skip to content

Commit

Permalink
Merge pull request #3781 from Rohde-Schwarz/fix/mingw_build
Browse files Browse the repository at this point in the history
FIX: explicitly specify the make tool in mingw build
  • Loading branch information
reneme authored Oct 27, 2023
2 parents 60f0343 + 3621e9f commit d547d20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ jobs:
cache-key: ${{ matrix.host_os }}-${{ matrix.compiler }}-x86_64-${{ matrix.target }}

- name: Build and Test Botan
run: python3 ./source/src/scripts/ci_build.py --root-dir=${{ github.workspace }}/source --build-dir=${{ github.workspace }}/build --boringssl-dir=${{ github.workspace }}/boringssl --cc='${{ matrix.compiler }}' --make-tool='${{ matrix.make_tool }}' --test-results-dir=junit_results ${{ matrix.target }}
run: python3 ./source/src/scripts/ci_build.py --root-dir=${{ github.workspace }}/source --build-dir=${{ github.workspace }}/build --boringssl-dir=${{ github.workspace }}/boringssl --cc='${{ matrix.compiler }}' --test-results-dir=junit_results ${{ matrix.target }}

x-compile:
name: "Cross"
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
- target: static
compiler: gcc
host_os: windows-2022
make_tool: mingw32-make
make_tool: make
- target: cross-ios-arm64
compiler: clang
host_os: macos-13
Expand All @@ -288,4 +288,4 @@ jobs:
cache-key: ${{ matrix.host_os }}-${{ matrix.compiler }}-xcompile-${{ matrix.target }}

- name: Build and Test Botan
run: python3 ./src/scripts/ci_build.py --cc='${{ matrix.compiler }}' --test-results-dir=junit_results ${{ matrix.target }}
run: python3 ./src/scripts/ci_build.py --cc='${{ matrix.compiler }}' --make-tool='${{ matrix.make_tool }}' --test-results-dir=junit_results ${{ matrix.target }}

0 comments on commit d547d20

Please sign in to comment.