Skip to content

Commit

Permalink
install build tools on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mibmo committed Apr 11, 2023
1 parent 815ca9b commit dfcc4db
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
fail-fast: false
matrix:
include:
- runner-os: ubuntu-latest
triple: x86_64-unknown-linux-gnu
- runner-os: macos-latest
triple: x86_64-apple-darwin
#- runner-os: ubuntu-latest
# triple: x86_64-unknown-linux-gnu
#- runner-os: macos-latest
# triple: x86_64-apple-darwin
- runner-os: windows-latest
triple: x86_64-pc-windows-gnu
steps:
Expand All @@ -34,6 +34,12 @@ jobs:
- name: Setup MinGW [windows]
if: runner.os == 'Windows'
uses: egor-tensin/setup-mingw@v2
- name: Download build tools [windows]
if: runner.os == 'Windows'
run: pacman -Sy --needed \
base-devel mingw-w64-i686-toolchain mingw-w64-x86_64-toolchain git \
subversion mercurial libtool automake autoconf automake-wrapper \
mingw-w64-i686-cmake mingw-w64-x86_64-cmake

- name: Checkout repository
uses: actions/checkout@v3
Expand Down

0 comments on commit dfcc4db

Please sign in to comment.