]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
GHA/configure-vs-cmake: drop disabling dependency tracking [ci skip]
authorViktor Szakats <commit@vsz.me>
Mon, 26 Aug 2024 14:29:17 +0000 (16:29 +0200)
committerViktor Szakats <commit@vsz.me>
Mon, 26 Aug 2024 14:29:20 +0000 (16:29 +0200)
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

index bb8574ddbda97a53046dba96db4deb4f511366ba..b7819f107594785a2beec932dab6ec408f12262a 100644 (file)
@@ -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: |