odbc: Fix for SQL_COPT_SS_OLDPWD attribute #718
Workflow file for this run
This file contains hidden or 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: macOS | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| paths-ignore: | |
| - .github/workflows/linux.yml | |
| - .github/workflows/windows.yml | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]+' | |
| - 'v[0-9]+.[0-9]+.[0-9]+rc[0-9]+' | |
| pull_request: | |
| branches: | |
| - '**' | |
| paths-ignore: | |
| - .github/workflows/linux.yml | |
| - .github/workflows/windows.yml | |
| workflow_dispatch: | |
| # Declare default permissions as read only. | |
| permissions: read-all | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-13] | |
| env: | |
| PREFIX: /tmp/freetds | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install dependencies | |
| run: | | |
| brew install autoconf automake libtool \ | |
| libiconv gettext gperf | |
| - name: configure | |
| run: | | |
| autoreconf -i | |
| ./configure --with-gnutls --enable-silent-rules \ | |
| --prefix=${PREFIX} | |
| - name: make | |
| run: make |