forked from datahub-project/datahub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into improve_notifications_docs
- Loading branch information
Showing
265 changed files
with
8,272 additions
and
1,382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
TARGET_DIR="${TARGET_DIR:=docker_logs}" | ||
TEST_STRATEGY="${TEST_STRATEGY:=}" | ||
|
||
mkdir -p "$TARGET_DIR" | ||
for name in `docker ps -a --format '{{.Names}}'`; | ||
do | ||
docker logs "$name" >& "${TARGET_DIR}/${name}${TEST_STRATEGY}.log" || true | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,11 @@ jobs: | |
timeout-minutes: 60 | ||
needs: setup | ||
steps: | ||
- name: Free up disk space | ||
run: | | ||
sudo apt-get remove 'dotnet-*' azure-cli || true | ||
sudo rm -rf /usr/local/lib/android/ || true | ||
sudo docker image prune -a -f || true | ||
- uses: szenius/[email protected] | ||
with: | ||
timezoneLinux: ${{ matrix.timezone }} | ||
|
Oops, something went wrong.