-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Reformat extensible structure
- Loading branch information
1 parent
a4a7d4e
commit 500f3ef
Showing
8 changed files
with
228 additions
and
272 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,24 +1,22 @@ | ||
name: CI | ||
|
||
on: | ||
#temporary | ||
push: | ||
paths-ignore: | ||
- "trace-viewer/**" | ||
- ".github/workflows/frontend.yml" | ||
workflow_dispatch: | ||
# Scheduled workflows will only run on the default branch. | ||
schedule: | ||
- cron: '0 0 * * *' # runs once a day at midnight in the timezone of your GitHub repository | ||
|
||
jobs: | ||
|
||
# doctest: | ||
# uses: ./.github/workflows/doctest.yml | ||
# secrets: inherit | ||
lint: | ||
uses: ./.github/workflows/lint.yml | ||
os-support: | ||
uses: ./.github/workflows/sdk-tests.yml | ||
strategy: | ||
matrix: | ||
os: [macos-latest, windows-latest] | ||
with: | ||
runner: "['windows-latest', 'macos-latest']" | ||
secrets: inherit | ||
# test: | ||
# uses: ./.github/workflows/test.yml | ||
# secrets: inherit | ||
# run-notebooks: | ||
# uses: ./.github/workflows/run_notebooks.yml | ||
# secrets: inherit | ||
runner: ${{ matrix.os }} | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: CI Pipeline | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- "trace-viewer/**" | ||
- ".github/workflows/frontend.yml" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
python-tests: | ||
uses: ./.github/workflows/sdk-tests.yml | ||
with: | ||
runner: 'ubuntu-latest' | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.