-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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 bq-retries
- Loading branch information
Showing
298 changed files
with
40,091 additions
and
5,195 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 }} | ||
|
@@ -86,6 +91,8 @@ jobs: | |
-x :metadata-ingestion-modules:airflow-plugin:check \ | ||
-x :metadata-ingestion-modules:dagster-plugin:build \ | ||
-x :metadata-ingestion-modules:dagster-plugin:check \ | ||
-x :metadata-ingestion-modules:gx-plugin:build \ | ||
-x :metadata-ingestion-modules:gx-plugin:check \ | ||
-x :datahub-frontend:build \ | ||
-x :datahub-web-react:build \ | ||
--parallel | ||
|
Oops, something went wrong.