Skip to content

tds: Use more TDS_PROPAGATE #43

tds: Use more TDS_PROPAGATE

tds: Use more TDS_PROPAGATE #43

Workflow file for this run

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:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13]
env:
PREFIX: /tmp/freetds
steps:
- uses: actions/checkout@v4
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