Merge pull request #9524 from id/ci-fix-logs-artefact-name
ci: fix logs artefact name
This commit is contained in:
commit
d8cc05ffc2
|
@ -187,7 +187,7 @@ jobs:
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
name: logs-${{ matrix.app[0] }}-${{ matrix.app[1] }}
|
name: logs-${{ matrix.app[1] }}-${{ matrix.app[2] }}
|
||||||
path: source/_build/test/logs
|
path: source/_build/test/logs
|
||||||
|
|
||||||
ct:
|
ct:
|
||||||
|
@ -243,7 +243,7 @@ jobs:
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
name: logs-${{ matrix.app[0] }}-${{ matrix.app[1] }}
|
name: logs-${{ matrix.app[1] }}-${{ matrix.app[2] }}
|
||||||
path: source/_build/test/logs
|
path: source/_build/test/logs
|
||||||
|
|
||||||
make_cover:
|
make_cover:
|
||||||
|
|
|
@ -78,7 +78,9 @@ dimensions() {
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
## poor-man's json formatter
|
## poor-man's json formatter
|
||||||
echo -n -e "[\"$app\", \"$profile\"]"
|
## apps/<app name>, <profile>, apps_<app name>
|
||||||
|
## third one is for github actions (they don't like slash in variables)
|
||||||
|
echo -n -e "[\"$app\", \"$profile\", \"${app//\//_}\"]"
|
||||||
}
|
}
|
||||||
|
|
||||||
matrix() {
|
matrix() {
|
||||||
|
|
Loading…
Reference in New Issue