| Message ID | 20260313153007.31810-1-gert@greenie.muc.de |
|---|---|
| State | New |
| Headers | show |
| Series | [Openvpn-devel,v4] GHA: Install aws-lc under /opt/aws-lc | expand |
This is a build fix, so no actual code change - just ensure that our
GH actions actually *do* build with AWS-LC (... and subsequently
discover the error fixed by the just-applied commit)
Mildly tested by pushing to my GH repo.
Your patch has been applied to the master and release/2.7 branch.
commit 30c1c8cd61db9eb35f6c263a0ca3ec0714c88eb4 (master)
commit 7158e76feb980443d97ebe321b2a7a54659b7ab4 (release/2.7)
Author: Arne Schwabe
Date: Fri Mar 13 16:30:01 2026 +0100
GHA: Install aws-lc under /opt/aws-lc
Signed-off-by: Arne Schwabe <arne-openvpn@rfc2549.org>
Acked-by: Frank Lichtenheld <frank@lichtenheld.com>
Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1565
Message-Id: <20260313153007.31810-1-gert@greenie.muc.de>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg36106.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
--
kind regards,
Gert Doering
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b213192..2a2616b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -454,7 +454,7 @@ CC: ${{matrix.cc}} CXX: ${{matrix.cxx}} UBSAN_OPTIONS: print_stacktrace=1 - AWS_LC_INSTALL: ${{ github.workspace }}/aws-lc/aws-lc-install + AWS_LC_INSTALL: /opt/aws-lc steps: - name: Install dependencies @@ -465,7 +465,7 @@ path: aws-lc # versioning=semver-coerced repository: aws/aws-lc - ref: v1.67.0 + ref: v1.70.0 - uses: lukka/get-cmake@f176ccd3f28bda569c43aae4894f06b2435a3375 # v4.2.3 - name: "AWS-LC: build" run: | @@ -480,10 +480,10 @@ run: autoreconf -fvi - name: configure with AWS-LC run: | - OPENSSL_CFLAGS="-I/${{ env.AWS_LC_INSTALL }}/include" \ - OPENSSL_LIBS="-L/${{ env.AWS_LC_INSTALL }}/lib -lssl -lcrypto" \ - LDFLAGS="-Wl,-rpath=/${{ env.AWS_LC_INSTALL }}/lib" \ - ./configure --with-crypto-library=openssl --enable-werror + OPENSSL_CFLAGS="-I${{ env.AWS_LC_INSTALL }}/include" \ + OPENSSL_LIBS="-L${{ env.AWS_LC_INSTALL }}/lib -lssl -lcrypto" \ + LDFLAGS="-Wl,-rpath=${{ env.AWS_LC_INSTALL }}/lib" \ + ./configure --with-crypto-library=openssl - name: make all run: make -j3 - name: configure checks