File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 95
95
- name : Compile mainline
96
96
run : |
97
97
./mainline.sh
98
+
99
+ just_dependencies :
100
+ runs-on : ubuntu-latest
101
+ steps :
102
+ - name : Checkout
103
+ uses : actions/checkout@v4
104
+ - name : Install Dependencies
105
+ run : |
106
+ sudo apt-get update
107
+ sudo apt-get install -y cmake clang
108
+ - name : Compile deps target
109
+ run : ./scripts/compile_target.sh deps
Original file line number Diff line number Diff line change @@ -175,9 +175,14 @@ else()
175
175
set (GDB_DEP "" )
176
176
endif ()
177
177
178
- # Group dependencies into a single target
178
+ # Group non-curl dependencies into a single target
179
179
add_custom_target (deps
180
- DEPENDS zlib_external ${OPENSSL_DEP} nghttp2_external ${GDB_DEP}
180
+ DEPENDS
181
+ zlib_external
182
+ ${OPENSSL_DEP}
183
+ nghttp2_external
184
+ zstd_external
185
+ ${GDB_DEP}
181
186
)
182
187
183
188
# Now for the main dependencies!
You can’t perform that action at this time.
0 commit comments