Skip to content

Commit

Permalink
install dependencies for tests too
Browse files Browse the repository at this point in the history
  • Loading branch information
mibmo committed Apr 11, 2023
1 parent 6448239 commit 655eb6c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,31 @@ jobs:
triple: x86_64-pc-windows-gnu
use-caching: false
steps:
- name: install build tools [linux]
if: runner.os == 'linux'
run: sudo apt-get install build-essential libtool autopoint
- name: Install build tools [mac]
if: runner.os == 'macOS'
run: brew install libtool automake gettext
- name: Install build tools [windows]
if: runner.os == 'Windows'
uses: msys2/setup-msys2@v2
with:
update: true
install:
base-devel
git
subversion
mercurial
libtool
automake
autoconf
automake-wrapper
mingw-w64-i686-toolchain
mingw-w64-x86_64-toolchain
mingw-w64-i686-cmake
mingw-w64-x86_64-cmake

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

0 comments on commit 655eb6c

Please sign in to comment.