-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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' of https://github.com/apache/superset into mapb…
…ox-api-env
- Loading branch information
Showing
2,780 changed files
with
232,132 additions
and
513,799 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,11 +1,19 @@ | ||
# Notify all committers of DB migration changes, per SIP-59 | ||
|
||
# https://github.com/apache/superset/issues/13351 | ||
|
||
/superset/migrations/ @apache/superset-committers | ||
|
||
# Notify Preset team when ephemeral env settings are changed | ||
|
||
.github/workflows/ecs-task-definition.json @robdiciuccio @craig-rueda @rusackas @eschutho @dpgaspar @nytai @mistercrunch | ||
.github/workflows/docker-ephemeral-env.yml @robdiciuccio @craig-rueda @rusackas @eschutho @dpgaspar @nytai @mistercrunch | ||
.github/workflows/ephemeral*.yml @robdiciuccio @craig-rueda @rusackas @eschutho @dpgaspar @nytai @mistercrunch | ||
|
||
# Notify some committers of changes in the Select component | ||
/superset-frontend/src/components/Select/ @michael-s-molina @geido | ||
|
||
/superset-frontend/src/components/Select/ @michael-s-molina @geido @ktmud | ||
|
||
# Notify Helm Chart maintainers about changes in it | ||
|
||
/helm/superset/ @craig-rueda @dpgaspar @villebro |
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 was deleted.
Oops, something went wrong.
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 @@ | ||
name: Embedded SDK Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
defaults: | ||
run: | ||
working-directory: superset-embedded-sdk | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16" | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm ci | ||
- run: npm run ci:release | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
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,24 @@ | ||
name: Embedded SDK PR Checks | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "superset-embedded-sdk/**" | ||
types: [synchronize, opened, reopened, ready_for_review] | ||
|
||
jobs: | ||
embedded-sdk-test: | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-20.04 | ||
defaults: | ||
run: | ||
working-directory: superset-embedded-sdk | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16" | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm ci | ||
- run: npm test | ||
- run: npm run build |
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,88 @@ | ||
name: Applitools Cypress | ||
|
||
on: | ||
schedule: | ||
- cron: "0 1 * * *" | ||
|
||
jobs: | ||
cypress-applitools: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
browser: ["chrome"] | ||
node: [16] | ||
env: | ||
FLASK_ENV: development | ||
SUPERSET_CONFIG: tests.integration_tests.superset_test_config | ||
SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:superset@127.0.0.1:15432/superset | ||
PYTHONPATH: ${{ github.workspace }} | ||
REDIS_PORT: 16379 | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
APPLITOOLS_APP_NAME: Superset | ||
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }} | ||
APPLITOOLS_BATCH_ID: ${{ github.sha }} | ||
APPLITOOLS_BATCH_NAME: Superset Cypress | ||
services: | ||
postgres: | ||
image: postgres:14-alpine | ||
env: | ||
POSTGRES_USER: superset | ||
POSTGRES_PASSWORD: superset | ||
ports: | ||
- 15432:5432 | ||
redis: | ||
image: redis:5-alpine | ||
ports: | ||
- 16379:6379 | ||
steps: | ||
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
submodules: recursive | ||
ref: master | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.8" | ||
- name: OS dependencies | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: apt-get-install | ||
- name: Install python dependencies | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: | | ||
pip-upgrade | ||
pip install -r requirements/testing.txt | ||
- name: Setup postgres | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: setup-postgres | ||
- name: Import test data | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: testdata | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: Install npm dependencies | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: npm-install | ||
- name: Build javascript packages | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: build-instrumented-assets | ||
- name: Install cypress | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: cypress-install | ||
- name: Run Cypress | ||
uses: ./.github/actions/cached-dependencies | ||
env: | ||
CYPRESS_BROWSER: ${{ matrix.browser }} | ||
with: | ||
run: cypress-run-applitools |
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,40 @@ | ||
name: Applitools Storybook | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
env: | ||
APPLITOOLS_APP_NAME: Superset | ||
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }} | ||
APPLITOOLS_BATCH_ID: ${{ github.sha }} | ||
APPLITOOLS_BATCH_NAME: Superset Storybook | ||
|
||
jobs: | ||
cron: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
node: [16] | ||
steps: | ||
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
submodules: recursive | ||
ref: master | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v3.1.1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: Install eyes-storybook dependencies | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: eyes-storybook-dependencies | ||
- name: Install NPM dependencies | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: npm-install | ||
- name: Run Applitools Eyes-Storybook | ||
working-directory: ./superset-frontend | ||
run: npx eyes-storybook -u https://superset-storybook.netlify.app/ |
Oops, something went wrong.