1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-04 01:17:33 +03:00

ci.sh: prefix log/debug files with impl name.

This commit is contained in:
Joel Martin 2021-04-23 16:13:12 -05:00
parent 085cc2f026
commit 69238ec858
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ jobs:
run: |
export ${{ matrix.IMPL }}
./ci.sh build ${IMPL}
- name: Tests
- name: Step Tests
run: |
export ${{ matrix.IMPL }}
./ci.sh test ${IMPL}
@ -75,7 +75,7 @@ jobs:
run: |
export ${{ matrix.IMPL }}
./ci.sh build ${IMPL}
- name: Tests
- name: Step Tests
run: |
export ${{ matrix.IMPL }}
./ci.sh test ${IMPL}

2
ci.sh
View File

@ -7,7 +7,7 @@ IMPL=${2}
# Environment variable configuration
BUILD_IMPL=${BUILD_IMPL:-${IMPL}}
log_prefix="../../${ACTION}${REGRESS:+-regress}"
log_prefix="../../${IMPL}-${ACTION}${REGRESS:+-regress}"
TEST_OPTS="${TEST_OPTS} --log-file ${log_prefix}.log --debug-file ${log_prefix}.debug"
if [ "${DO_SELF_HOST}" ]; then