From 722730f876a20e27294cac705bbc77ac246fbd6e Mon Sep 17 00:00:00 2001 From: Fangchen Li Date: Mon, 28 Dec 2020 15:26:38 -0600 Subject: [PATCH 1/2] CI: print build version --- .github/workflows/database.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/database.yml b/.github/workflows/database.yml index 5fe7fc17a98cb..041f6d7aea0f4 100644 --- a/.github/workflows/database.yml +++ b/.github/workflows/database.yml @@ -86,6 +86,9 @@ jobs: run: ci/run_tests.sh if: always() + - name: Build Version + - run: pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd + - name: Publish test results uses: actions/upload-artifact@master with: @@ -169,6 +172,9 @@ jobs: run: ci/run_tests.sh if: always() + - name: Build Version + - run: pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd + - name: Publish test results uses: actions/upload-artifact@master with: From 64e63cf08fc709251bb7d986c9bc512cdcc6c133 Mon Sep 17 00:00:00 2001 From: Fangchen Li Date: Mon, 28 Dec 2020 15:29:55 -0600 Subject: [PATCH 2/2] CI: print build version --- .github/workflows/database.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/database.yml b/.github/workflows/database.yml index 041f6d7aea0f4..c2f332cc5454a 100644 --- a/.github/workflows/database.yml +++ b/.github/workflows/database.yml @@ -87,7 +87,7 @@ jobs: if: always() - name: Build Version - - run: pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd + run: pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd - name: Publish test results uses: actions/upload-artifact@master @@ -173,7 +173,7 @@ jobs: if: always() - name: Build Version - - run: pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd + run: pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd - name: Publish test results uses: actions/upload-artifact@master