Skip to content

Commit 109c10d

Browse files
committed
added hommebrew and deps to macos
1 parent 575d821 commit 109c10d

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/build-macos.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,18 @@ jobs:
1212
- uses: actions/setup-python@v5
1313
with:
1414
python-version: 3.11.4
15+
16+
- name: Install Homebrew
17+
run: |
18+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"  
19+
20+
- name: Install XCode Command Line Tools
21+
run: xcode-select --install
22+
- name: Install UnixODBC and MSODBCSQL18
23+
run: |
24+
brew install unixodbc unixodbc-dev msodbcsql18
25+
1526
- run: pip install -r Tools/mssql-proxy/requirements.txt pyinstaller
16-
# - run: ./Tools/mssql-proxy/odbc-driver-installer.sh
1727
- run: pyinstaller mssql-proxy.mac.spec
1828
working-directory: Tools/mssql-proxy
1929
- run: tar -czf mssql-proxy-${{ github.ref_name }}-macos.tar.gz Tools/mssql-proxy/dist

0 commit comments

Comments
 (0)