-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run unit tests + postgres on circle for outside contributors Skip other integration tests on circle for outside contributors Set an actual condition in AZP to skip running secure tests on azp build wheels after we pass tests
- Loading branch information
Jacob Beck
committed
Feb 5, 2020
1 parent
b691a73
commit 71623e2
Showing
3 changed files
with
90 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash -eo pipefail | ||
|
||
DBT_PATH="$( cd "$(dirname "$0")/.." ; pwd -P )" | ||
|
||
echo $SCRIPTPATH | ||
|
||
set -x | ||
|
||
rm -rf "$DBT_PATH"/dist | ||
mkdir -p "$DBT_PATH"/dist | ||
|
||
for SUBPATH in core plugins/postgres plugins/redshift plugins/bigquery plugins/snowflake | ||
do | ||
rm -rf "$DBT_PATH"/"$SUBPATH"/dist | ||
cd "$DBT_PATH"/"$SUBPATH" | ||
python setup.py sdist bdist_wheel | ||
cp -r "$DBT_PATH"/"$SUBPATH"/dist/* "$DBT_PATH"/dist/ | ||
done | ||
|
||
cd "$DBT_PATH" | ||
python setup.py sdist | ||
|
||
set +x |