diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2022-09-19 18:46:16 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2022-09-21 01:57:24 -0400 |
commit | a4c7c97110bc51346ee0409e620c9e0f81fbda24 (patch) | |
tree | 9a57c891ae4dcf25ce2e37c7e736590bcc0a16c0 /ci/_test-git-branch.sh | |
parent | 50af205983b3a037a29796a10e7cb14a32cf282e (diff) |
ci: New CGI frontend, written in Rust
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'ci/_test-git-branch.sh')
-rw-r--r-- | ci/_test-git-branch.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ci/_test-git-branch.sh b/ci/_test-git-branch.sh index 59094ac..05886a7 100644 --- a/ci/_test-git-branch.sh +++ b/ci/_test-git-branch.sh @@ -37,6 +37,7 @@ COMMIT=${TEST_JOB[1]} TEST_PATH=${TEST_JOB[2]} TEST_NAME=$(basename -s .ktest $TEST_PATH) SUBTESTS=( "${TEST_JOB[@]:3}" ) +OUTPUT=$JOBSERVER_OUTPUT_DIR/$COMMIT if [[ -z $BRANCH ]]; then echo "Error getting test job: need git branch" @@ -108,12 +109,8 @@ done echo "Compressing output" find ktest-out/out -type f -name \*log -print0|xargs -0 brotli --rm -9 -OUTPUT=$JOBSERVER_OUTPUT_DIR/c/$COMMIT ssh $JOBSERVER mkdir -p $OUTPUT echo "Sending results to jobserver" (cd ktest-out/out; tar --create --file - *)| ssh $JOBSERVER "(cd $OUTPUT; tar --extract --file -)" - -echo "Running test-job-done.sh" -ssh $JOBSERVER test-job-done.sh $BRANCH $COMMIT |