mirror of
https://github.com/curl/curl.git
synced 2026-06-08 13:44:16 +03:00
GHA/linux: install with autotools too
This commit is contained in:
parent
8381bc863b
commit
8bfc4dfe7f
1 changed files with 8 additions and 4 deletions
12
.github/workflows/linux.yml
vendored
12
.github/workflows/linux.yml
vendored
|
|
@ -572,7 +572,7 @@ jobs:
|
|||
else
|
||||
mkdir bld && cd bld && \
|
||||
${MATRIX_CONFIGURE_PREFIX} \
|
||||
../configure --enable-unity --enable-warnings --enable-werror \
|
||||
../configure --prefix="$HOME"/curl-install --enable-unity --enable-warnings --enable-werror \
|
||||
--disable-dependency-tracking \
|
||||
${MATRIX_CONFIGURE}
|
||||
fi
|
||||
|
|
@ -614,9 +614,13 @@ jobs:
|
|||
if: ${{ matrix.build.make-custom-target != 'tidy' }}
|
||||
run: bld/src/curl -V
|
||||
|
||||
- name: 'cmake install'
|
||||
if: ${{ matrix.build.generate }}
|
||||
run: cmake --install bld --strip
|
||||
- name: 'curl install'
|
||||
run: |
|
||||
if [ "${MATRIX_BUILD}" = 'cmake' ]; then
|
||||
cmake --install bld --strip
|
||||
else
|
||||
make install
|
||||
fi
|
||||
|
||||
- name: 'build tests'
|
||||
if: ${{ !contains(matrix.build.install_steps, 'skipall') }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue