-
Notifications
You must be signed in to change notification settings - Fork 10
38 lines (33 loc) · 1.13 KB
/
mac-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Mac CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
brew update
brew install tcl-tk autoconf libpq || true
ls -l /opt/homebrew/Cellar/
ls -lR /opt/homebrew/Cellar/libpq
echo PATH=$PATH
#ls -lR /opt/homebrew/Cellar/tcl-tk/
#sudo mkdir -p /usr/local/include /usr/local/lib /usr/local/bin
#sudo ln -sf /opt/homebrew/Cellar/tcl-tk/8.6.14/include /usr/local/include/tcl8.6
#sudo rm -f /usr/local/lib/libtcl* || true
#sudo cp /opt/homebrew/Cellar/tcl-tk/8.6.14/lib/ /usr/local/lib/
#sudo ln -sf /opt/homebrew/Cellar/tcl-tk/8.6.14/bin/tclsh8.6 /usr/local/bin/tclsh
#sudo ln -sf /opt/homebrew/Cellar/tcl-tk/8.6.14/bin/tclsh8.6 /usr/local/bin/tclsh8.6
- name: configure
run: |
autoreconf -vi
./configure --with-tcl=/opt/homebrew/Cellar/tcl-tk/8.6.14/lib/ --prefix=/usr/local
- name: make
run: make
- name: install
run: sudo make install