From 4a0061697ee1e22b423f06f8878ee254902c3a12 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 26 Aug 2024 16:29:17 +0200 Subject: [PATCH] GHA/configure-vs-cmake: drop disabling dependency tracking [ci skip] Recently added, but it's not saving anything at the configure stage, the only stage in this workflow. Follow-up to aaacd02466f77d03b8fdc19e91a0a3ec72f4c38a #14678 --- .github/workflows/configure-vs-cmake.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/configure-vs-cmake.yml b/.github/workflows/configure-vs-cmake.yml index bb8574ddbd..b7819f1075 100644 --- a/.github/workflows/configure-vs-cmake.yml +++ b/.github/workflows/configure-vs-cmake.yml @@ -37,7 +37,7 @@ jobs: - name: run configure --with-openssl run: | autoreconf -fi - ./configure --disable-dependency-tracking --with-openssl --without-libpsl + ./configure --with-openssl --without-libpsl - name: run cmake run: | @@ -58,7 +58,7 @@ jobs: - name: run configure --with-openssl run: | autoreconf -fi - ./configure --disable-dependency-tracking --with-openssl --without-libpsl + ./configure --with-openssl --without-libpsl - name: run cmake run: | @@ -82,7 +82,7 @@ jobs: - name: run configure --with-schannel run: | autoreconf -fi - ./configure --disable-dependency-tracking --with-schannel --without-libpsl --host=${TRIPLET} + ./configure --with-schannel --without-libpsl --host=${TRIPLET} - name: run cmake run: | -- 2.47.3