Skip to content

Commit

Permalink
ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
rootTHC committed Aug 6, 2024
1 parent e460d35 commit 18ebf88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ jobs:

- name: Add build dependencies
run: |
apk add --update --no-cache --no-progress git autoconf automake make curl bsd-compat-headers
apk add --update --no-cache --no-progress git autoconf automake make curl bsd-compat-headers file
- name: Cache SSL
- name: Cache SSL + LibEvent
id: cachessl
uses: actions/cache@v3
with:
path: /opt
key: ${{ matrix.arch }}-ssl

- name: Generate OpenSSL
- name: Generate OpenSSL + Libevent
if: steps.cachessl.outputs.cache-hit != 'true'
run: |
curl -SsfL https://www.openssl.org/source/openssl-${OPENSSL_VER:-1.1.1w}.tar.gz | tar -xzf - -C /tmp/
Expand Down Expand Up @@ -69,10 +69,10 @@ jobs:
- name: Compiling GSRN
run: |
pwd
./bootstrap
LDFLAGS="-L/opt/lib" LIBS="-lssl -lcrypto" ./configure --prefix=/opt --enable-static --host=${{ matrix.arch }}
make
file src/gsrnd
mv src/gsrnd gsrnd-linux-${{ matrix.arch }}
mv src/gsrn_cli gsrn_cli-linux-${{ matrix.arch }}
Expand Down

0 comments on commit 18ebf88

Please sign in to comment.