Upgrade unixodbc version to 2.3.12 #507
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mingw-w64 Cross Compile | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# This is what will cancel the workflow | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip_build]')" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cross compile ffead-cpp for mingw-w64 | |
run: | | |
cd docker | |
docker build -f DockerFile-cross-archlinux-mingw64 . |