aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGilles Chehade <gilles@poolp.org>2020-05-05 23:49:41 +0200
committerGilles Chehade <gilles@poolp.org>2020-05-05 23:49:41 +0200
commitc8e177538c7e68ec96ebbd77a40785daff29188a (patch)
tree974f3be00c4863e3a5c55443e81298df7200504d
parentbrew install byacc (diff)
downloadOpenSMTPD-c8e177538c7e68ec96ebbd77a40785daff29188a.tar.xz
OpenSMTPD-c8e177538c7e68ec96ebbd77a40785daff29188a.zip
reorder
-rw-r--r--.github/workflows/macos-latest.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/macos-latest.yml b/.github/workflows/macos-latest.yml
index 13fd68a1..6925905b 100644
--- a/.github/workflows/macos-latest.yml
+++ b/.github/workflows/macos-latest.yml
@@ -12,4 +12,12 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: macOS Catalina 10.15
- run: brew install automake libevent openssl@1.1 byacc && ./bootstrap && export LDFLAGS=-L/usr/local/opt/openssl@1.1/lib && export CFLAGS=-I/usr/local/opt/openssl@1.1/include && ./configure --with-gnu-ld --sysconfdir=/etc/mail --with-auth-pam --with-table-db && make
+ run: |
+ brew install automake libevent openssl@1.1 bison
+ export PATH="/usr/local/opt/bison/bin:$PATH"
+ export LDFLAGS="-L/usr/local/opt/openssl@1.1/lib -L/usr/local/opt/bison/lib"
+ export CFLAGS=-I/usr/local/opt/openssl@1.1/include
+ ./bootstrap
+ ./configure --with-gnu-ld --sysconfdir=/etc/mail --with-auth-pam
+ make
+ make install