We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dd3b85 commit b6accc8Copy full SHA for b6accc8
.github/workflows/build.yml
@@ -81,6 +81,7 @@ jobs:
81
env:
82
BINARY_EXTENSION: ${{ endsWith(matrix.target, '-msvc') && '.exe' || '' }}
83
PATH_BINARY: ${{ github.workspace }}/target/${{ matrix.TARGET }}/release/simple-http-server${{ matrix.EXTENSION }}${{ endsWith(matrix.target, '-msvc') && '.exe' || '' }}
84
+ OPENSSL_STATIC: 1
85
steps:
86
- uses: actions/checkout@v2
87
- uses: actions-rs/toolchain@v1
@@ -89,6 +90,10 @@ jobs:
89
90
override: true
91
components: clippy
92
target: ${{ matrix.target }}
93
+ - if: ${{ matrix.os == 'ubuntu-latest' }}
94
+ run: sudo apt update -y && sudo apt install libssl-dev -y
95
+ - if: ${{ matrix.os == 'macos-latest' }}
96
+ run: brew install openssl
97
- uses: actions-rs/cargo@v1
98
with:
99
use-cross: true
0 commit comments