File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 54
54
- name : Add target
55
55
run : rustup target add ${{ matrix.target }}
56
56
57
+ - name : Install OpenSSL (Linux)
58
+ if : runner.os == 'Linux'
59
+ run : |
60
+ sudo apt-get update
61
+ sudo apt-get install -y pkg-config libssl-dev
62
+
63
+ - name : Install OpenSSL (macOS)
64
+ if : runner.os == 'macOS'
65
+ run : brew install openssl
66
+
67
+ - name : Install OpenSSL (Windows)
68
+ if : runner.os == 'Windows'
69
+ run : vcpkg install openssl:x64-windows
70
+
57
71
- name : Install Linux ARM dependencies
58
72
if : matrix.target == 'aarch64-unknown-linux-gnu'
59
73
run : |
86
100
uses : actions/upload-artifact@v4
87
101
with :
88
102
name : ${{ matrix.asset_name }}
89
- path : target/${{ matrix.target }}/release/${{ matrix.artifact_name }}
103
+ path : target/${{ matrix.target }}/release/${{ matrix.artifact_name }}
You can’t perform that action at this time.
0 commit comments