aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGilles Chehade <gilles@poolp.org>2020-05-05 23:19:36 +0200
committerGilles Chehade <gilles@poolp.org>2020-05-05 23:19:36 +0200
commit706a0f844b0cfddb44bfcd585c565a2ff45a4f03 (patch)
tree92a9ae63a37d8e67cd3b91fd0d68980ce7c35483
parentopenssl is installed in /usr/local/opt/openssl@1.1 (diff)
downloadOpenSMTPD-706a0f844b0cfddb44bfcd585c565a2ff45a4f03.tar.xz
OpenSMTPD-706a0f844b0cfddb44bfcd585c565a2ff45a4f03.zip
collapse steps
-rw-r--r--.github/workflows/macos-latest.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/macos-latest.yml b/.github/workflows/macos-latest.yml
index 08ac2492..37b67a8e 100644
--- a/.github/workflows/macos-latest.yml
+++ b/.github/workflows/macos-latest.yml
@@ -11,7 +11,10 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- - name: install dependencies
- run: brew install automake libevent openssl@1.1
- name: macOS Catalina 10.15
- run: ./bootstrap && LDFLAGS=-L/usr/local/opt/openssl@1.1 CFLAGS=-I/usr/local/opt/openssl@1.1 ./configure --with-gnu-ld --sysconfdir=/etc/mail --with-auth-pam --with-table-db && make
+ run: brew install automake libevent openssl@1.1 && \
+ ./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