diff options
author | Paul Spooren <mail@aparcar.org> | 2022-03-30 01:43:17 +0100 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-12-04 17:36:52 +0100 |
commit | 119c6573c49ec1ca31b0fac56aa41120315fe229 (patch) | |
tree | 90bbe1e27a593a498f462c4b1575f1ee7231c74e | |
parent | ac7b1c8e9464ff2fafd682ede144564d99930063 (diff) | |
download | upstream-119c6573c49ec1ca31b0fac56aa41120315fe229.tar.gz upstream-119c6573c49ec1ca31b0fac56aa41120315fe229.tar.bz2 upstream-119c6573c49ec1ca31b0fac56aa41120315fe229.zip |
CI: usability improvements for tools
* Always store build logs
* Store .config as an artifact
* Rename job to `tools-{ os }` for log archive without spaces
* Run CI job on changes to the CI file itself
Signed-off-by: Paul Spooren <mail@aparcar.org>
(cherry picked from commit 80f79beb952dcb87d967a130d326cb1dd5a077ed)
-rw-r--r-- | .github/workflows/tools.yml | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index e089e26193..4e423fdd62 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -4,13 +4,14 @@ on: pull_request: paths: - 'tools/**' + - '.github/workflows/tools.yml' permissions: contents: read jobs: build: - name: Build tools on ${{ matrix.os }} + name: tools-${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: False @@ -125,13 +126,22 @@ jobs: make tools/install -j$(nproc) BUILD_LOG=1 - name: Move logs to GITHUB_WORKSPACE - if: failure() + if: always() run: | cp -r "$WORKPATH/logs" "$GITHUB_WORKSPACE" + cp -r "$WORKPATH/.config" "$GITHUB_WORKSPACE/config" + - name: Upload logs - if: failure() + if: always() uses: actions/upload-artifact@v2 with: name: ${{ matrix.os }}-logs path: "logs" + + - name: Upload config + if: always() + uses: actions/upload-artifact@v2 + with: + name: ${{ matrix.os }}-config + path: "config" |