Skip to content

Commit

Permalink
change win auto-build script to add more mingw64 env vars (#117)
Browse files Browse the repository at this point in the history
* fix auto-build script to include previously-missing mingw64 env vars resulting in failures such as for sql cmd
* update ci build tag to 0.3.5
  • Loading branch information
liquidaty authored Mar 21, 2023
1 parent 67f21a7 commit 83dcabc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ${{ matrix.os }}

env:
TAG: "0.3.2"
TAG: "0.3.5"
AMD64_LINUX_GCC: amd64-linux-gcc
AMD64_LINUX_CLANG: amd64-linux-clang
AMD64_WINDOWS_MINGW: amd64-windows-mingw
Expand Down Expand Up @@ -112,6 +112,13 @@ jobs:
CC: x86_64-w64-mingw32-gcc
MAKE: make
RUN_TESTS: false
CXX: x86_64-w64-mingw32-g++
CPP: x86_64-w64-mingw32-cpp
RANLIB: x86_64-w64-mingw32-ranlib
AR: x86_64-w64-mingw32-ar
NM: x86_64-w64-mingw32-nm
WINDRES: x86_64-w64-mingw32-windres

shell: bash
run: |
./scripts/ci-build.sh
Expand Down

0 comments on commit 83dcabc

Please sign in to comment.