-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: try to speed up Github workflows (#12090)
- Loading branch information
Showing
15 changed files
with
503 additions
and
247 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Cancel Duplicates | ||
on: | ||
workflow_run: | ||
workflows: ["CI"] | ||
types: ["requested"] | ||
|
||
jobs: | ||
cancel-duplicate-workflow-runs: | ||
name: "Cancel duplicate workflow runs" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: apache-superset/cancel-workflow-runs@953e057 | ||
name: "Cancel duplicate workflow runs" | ||
with: | ||
cancelMode: duplicates | ||
cancelFutureDuplicates: true | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
sourceRunId: ${{ github.event.workflow_run.id }} | ||
notifyPRCancel: true | ||
skipEventTypes: '["push", "pull_request", "pull_request_target"]' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
name: Miscellaneous | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- "dependabot/**" | ||
pull_request: | ||
|
||
jobs: | ||
license_check: | ||
name: License Check | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Java | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 8 | ||
- name: Generate fossa report | ||
env: | ||
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }} | ||
run: | | ||
set -eo pipefail | ||
if [[ "${{github.event_name}}" != "pull_request" ]]; then | ||
./scripts/fossa.sh | ||
exit 0 | ||
fi | ||
URL="https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/files" | ||
FILES=$(curl -s -X GET -G $URL | jq -r '.[] | .filename') | ||
cat<<EOF | ||
CHANGED FILES: | ||
$FILES | ||
EOF | ||
if [[ "${FILES}" =~ (.*package*\.json|requirements\/[a-z_-]+\.txt|setup\.py) ]]; then | ||
echo "Detected dependency changes... running fossa check" | ||
./scripts/fossa.sh | ||
else | ||
echo "No dependency changes... skiping fossa check" | ||
fi | ||
shell: bash | ||
- name: Run license check | ||
run: ./scripts/check_license.sh | ||
|
||
prefer_typescript: | ||
if: github.ref == 'ref/heads/master' && github.event_name == 'pull_request' | ||
name: Prefer Typescript | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Get changed files | ||
id: changed | ||
uses: ./.github/actions/file-changes-action | ||
with: | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Determine if a .js or .jsx file was added | ||
id: check | ||
run: | | ||
js_files_added() { | ||
jq -r ' | ||
map( | ||
select( | ||
endswith(".js") or endswith(".jsx") | ||
) | ||
) | join("\n") | ||
' ${HOME}/files_added.json | ||
} | ||
echo ::set-output name=js_files_added::$(js_files_added) | ||
- if: steps.check.outputs.js_files_added | ||
name: Add Comment to PR | ||
uses: ./.github/actions/comment-on-pr | ||
continue-on-error: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
msg: | | ||
### WARNING: Prefer TypeScript | ||
Looks like your PR contains new `.js` or `.jsx` files: | ||
``` | ||
${{steps.check.outputs.js_files_added}} | ||
``` | ||
As decided in [SIP-36](https://github.com/apache/superset/issues/9101), all new frontend code should be written in TypeScript. Please convert above files to TypeScript then re-request review. |
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.