Skip to content

Commit

Permalink
Merge pull request #23 from eval-exec/exec/fix-ci-test
Browse files Browse the repository at this point in the history
Fix CI Docker test failure due to missing OpenSSL; Use `OPENSSL_STATIC=1` for building ckb in the CI environment
  • Loading branch information
doitian authored Dec 13, 2023
2 parents 547971c + 0e84447 commit 7dbb5e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

- name: Build CKB
run: |
docker run --platform ${{matrix.platform}} --rm -i -w /ckb -v $(pwd)/ckb:/ckb ghcr.io/nervosnetwork/ckb-docker-builder:${{ matrix.distro }}-${{ github.sha }} make prod
docker run --platform ${{matrix.platform}} --rm -i -w /ckb -v $(pwd)/ckb:/ckb -e OPENSSL_STATIC=1 -e OPENSSL_LIB_DIR=/usr/local/lib64 -e OPENSSL_INCLUDE_DIR=/usr/local/include ghcr.io/nervosnetwork/ckb-docker-builder:${{ matrix.distro }}-${{ github.sha }} make prod
publish:
name: Publish
Expand Down

0 comments on commit 7dbb5e7

Please sign in to comment.