forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 2
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 #186 from CybercentreCanada/feature/update-cccs-ma…
…in-to-2.0-cccs-1.5-changes Feature/update cccs main to 2.0 cccs 1.5 changes
- Loading branch information
Showing
1,544 changed files
with
86,875 additions
and
86,110 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,14 +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,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/ |
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,76 @@ | ||
name: Superset CLI tests | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- "dependabot/npm_and_yarn/**" | ||
pull_request: | ||
types: [synchronize, opened, reopened, ready_for_review] | ||
|
||
jobs: | ||
test-load-examples: | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
python-version: [3.9] | ||
env: | ||
PYTHONPATH: ${{ github.workspace }} | ||
SUPERSET_CONFIG: tests.integration_tests.superset_test_config | ||
REDIS_PORT: 16379 | ||
SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:superset@127.0.0.1:15432/superset | ||
services: | ||
postgres: | ||
image: postgres:14-alpine | ||
env: | ||
POSTGRES_USER: superset | ||
POSTGRES_PASSWORD: superset | ||
ports: | ||
# Use custom ports for services to avoid accidentally connecting to | ||
# GitHub action runner's default installations | ||
- 15432:5432 | ||
redis: | ||
image: redis:5-alpine | ||
ports: | ||
- 16379:6379 | ||
steps: | ||
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | ||
uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
submodules: recursive | ||
- name: Check if python changes are present | ||
id: check | ||
env: | ||
GITHUB_REPO: ${{ github.repository }} | ||
PR_NUMBER: ${{ github.event.pull_request.number }} | ||
continue-on-error: true | ||
run: ./scripts/ci_check_no_file_changes.sh python | ||
- name: Setup Python | ||
if: steps.check.outcome == 'failure' | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
cache-dependency-path: 'requirements/testing.txt' | ||
- name: Install dependencies | ||
if: steps.check.outcome == 'failure' | ||
uses: ./.github/actions/cached-dependencies | ||
with: | ||
run: | | ||
apt-get-install | ||
pip-upgrade | ||
pip install wheel | ||
pip install -r requirements/testing.txt | ||
setup-postgres | ||
- name: superset init | ||
if: steps.check.outcome == 'failure' | ||
run: | | ||
pip install -e . | ||
superset db upgrade | ||
superset load_test_users | ||
- name: superset load_examples | ||
if: steps.check.outcome == 'failure' | ||
run: | | ||
# load examples without test data | ||
superset load_examples --load-big-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
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
Oops, something went wrong.