From: Eric Biggers Date: Wed, 8 Feb 2023 06:58:58 +0000 (-0800) Subject: ci.yml: store the config.h files as workflow artifacts X-Git-Tag: v1.47.1-rc1~85^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5df0323e879982a3ee5062b2445456226e8b690f;p=thirdparty%2Fe2fsprogs.git ci.yml: store the config.h files as workflow artifacts Store the config.h file for each platform as a workflow artifact, so that it will be possible to download them and compare them to util/android_config.h. Signed-off-by: Eric Biggers Signed-off-by: Theodore Ts'o --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51b27c88d..6b0f91506 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,10 @@ jobs: - run: make -j8 check V=1 CFLAGS_WARN="-Werror" - run: make -j8 install V=1 DESTDIR=$PWD/installdir - run: make -j8 uninstall V=1 DESTDIR=$PWD/installdir + - uses: actions/upload-artifact@v3 + with: + name: ubuntu-config.h + path: lib/config.h i386-build-and-test: name: Build and test with gcc -m32 @@ -79,6 +83,10 @@ jobs: - run: make -j8 check V=1 CFLAGS_WARN="-Werror -Wno-error=deprecated-declarations" - run: make -j8 install DESTDIR=$PWD/installdir - run: make -j8 uninstall DESTDIR=$PWD/installdir + - uses: actions/upload-artifact@v3 + with: + name: macOS-config.h + path: lib/config.h windows-msys2-build: name: Build mke2fs on Windows with ${{matrix.sys}} @@ -114,3 +122,7 @@ jobs: - run: make -j8 -C misc/ mke2fs V=1 CFLAGS_WARN="-Werror" - run: touch image.ext4 - run: misc/mke2fs.exe -T ext4 image.ext4 128M + - uses: actions/upload-artifact@v3 + with: + name: windows-${{matrix.env}}-config.h + path: lib/config.h