Skip to content

Commit

Permalink
chore: add no-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
septs committed Nov 2, 2024
1 parent b752f17 commit 3b08ae6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
repository: openssl/openssl
path: openssl
ref: ${{ inputs.ref }}
- run: ./config --static -static
- run: ./config no-tests --static -static
working-directory: openssl
- run: make
working-directory: openssl
Expand All @@ -35,6 +35,8 @@ jobs:
build-arm64:
name: Build OpenSSL (arm64)
runs-on: ubuntu-latest
env:
CC: aarch64-linux-gnu-gcc
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
Expand All @@ -43,15 +45,13 @@ jobs:
path: openssl
ref: ${{ inputs.ref }}
- run: sudo apt-get install -y gcc-aarch64-linux-gnu
- run: ./config no-asm --static -static
- run: ./config no-tests no-asm no-async linux-aarch64 --static -static
working-directory: openssl
- run: make
working-directory: openssl
- run: mkdir bin
- run: cp openssl/apps/openssl bin
- run: zip -r9 openssl-arm64.zip bin
env:
CC: aarch64-linux-gnu-gcc
- uses: actions/upload-artifact@v4
with:
name: openssl-arm64.zip
Expand Down

0 comments on commit 3b08ae6

Please sign in to comment.