-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from godatadriven/84-make-it-easier-to-install…
…-and-use-whirl 84 make it easier to install and use whirl
- Loading branch information
Showing
18 changed files
with
159 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
* text=auto | ||
*.sh text eol=lf | ||
*.bat text eol=crlf | ||
*.cmd text eol=crlf | ||
*.cmd text eol=crlf | ||
|
||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.github export-ignore | ||
.gitkeep export-ignore | ||
.editorconfig export-ignore | ||
logo export-ignore | ||
|
||
#Non finished examples and their envs | ||
examples/dbt** export-ignore | ||
envs/dbt** export-ignore |
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,21 @@ | ||
name: Publish minimal release archive | ||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write # for upload release asset | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Run git-archive command to create a release artifact | ||
run: git archive --format=tar.gz --prefix=whirl/ --output=whirl-release.tar.gz HEAD | ||
|
||
- name: upload Whirl release artifact | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
run: | | ||
gh release upload ${{ github.event.release.tag_name }} whirl-release.tar.gz --clobber |
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
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
MOCK_DATA_FOLDER=$(pwd)/mock-data | ||
MOCK_DATA_FOLDER=${DAG_FOLDER}/mock-data | ||
|
||
|
||
# Airflow variables | ||
|
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
WHIRL_ENVIRONMENT=dbt-example | ||
MOCK_DATA_FOLDER=$(pwd)/mock-data | ||
MOCK_DATA_FOLDER=${DAG_FOLDER}/mock-data |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
WHIRL_ENVIRONMENT=s3-external-spark-hive | ||
MOCK_DATA_FOLDER=$(pwd)/mock-data | ||
MOCK_DATA_FOLDER=${DAG_FOLDER}/mock-data |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
WHIRL_ENVIRONMENT=s3-spark-delta-sharing | ||
MOCK_DATA_FOLDER=$(pwd)/mock-data | ||
MOCK_DATA_FOLDER=${DAG_FOLDER}/mock-data | ||
|
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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
WHIRL_ENVIRONMENT=s3-external-spark-hive | ||
MOCK_DATA_FOLDER=$(pwd)/mock-data | ||
|
||
MOCK_DATA_FOLDER=${DAG_FOLDER}/mock-data |
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
WHIRL_ENVIRONMENT=postgres-s3-external-spark | ||
MOCK_DATA_FOLDER=$(pwd)/mock-data | ||
MOCK_DATA_FOLDER=${DAG_FOLDER}/mock-data | ||
MINIMAL_AIRFLOW_VERSION=2.3.0 |
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