Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Add better logging for GitHub Actions #410

Merged
merged 17 commits into from
Feb 25, 2021
Prev Previous commit
Next Next commit
Fix CircleCI
  • Loading branch information
thomasrockhu committed Feb 24, 2021
commit 5bce413cd9f0b67a3f10f170dc3ba34273b28d46
1 change: 1 addition & 0 deletions tests/env
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export CI_PROJECT_DIR=""
export CI_SERVER_NAME=""
export CI_SERVER_NAME=""
export CI=""
export CIRCLE_BUILD_NUM=""
export CIRCLECI=""
export CODECOV_ENV=""
export CODECOV_SLUG=""
Expand Down
2 changes: 2 additions & 0 deletions tests/test
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ function test_upload () {
if [ "$_CIRCLECI" != "" ];
then
export CIRCLECI=$_CIRCLECI
export CIRCLE_BUILD_NUM="${CIRCLE_BUILD_URL##*/}"
elif [ "$_GITHUB_ACTIONS" != "" ];
then
export GITHUB_ACTIONS=$_GITHUB_ACTIONS
Expand All @@ -243,6 +244,7 @@ function test_direct_upload () {
if [ "$_CIRCLECI" != "" ];
then
export CIRCLECI=$_CIRCLECI
export CIRCLE_BUILD_NUM="${CIRCLE_BUILD_URL##*/}"
elif [ "$_GITHUB_ACTIONS" != "" ];
then
export GITHUB_ACTIONS=$_GITHUB_ACTIONS
Expand Down