diff options
author | Nikias Bassen | 2019-12-09 02:34:19 +0100 |
---|---|---|
committer | Nikias Bassen | 2019-12-09 02:34:19 +0100 |
commit | 6dfedfc7185bd8c8a81c78927661beb6e2132af0 (patch) | |
tree | 07306778d4157a6c168cd7421b1aa8ad3e9a03fe | |
parent | 34891d5a68f6338b5c6747b5082668e3d997d54a (diff) | |
download | libplist-6dfedfc7185bd8c8a81c78927661beb6e2132af0.tar.gz libplist-6dfedfc7185bd8c8a81c78927661beb6e2132af0.tar.bz2 |
[github actions] trying to fix windows build...
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d0ae0e3..3a97e04 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,8 +43,8 @@ jobs: run: msys2do pacman -S --noconfirm mingw-w64-x86_64-gcc make libtool autoconf automake-wrapper - uses: actions/checkout@v1 - name: autogen - run: ./autogen.sh --without-cython + run: msys2do ./autogen.sh --without-cython - name: make - run: make + run: msys2do make - name: make check - run: make check + run: msys2do make check |