-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: refactor CI tests - WPB-11406 #1707
Draft
netbe
wants to merge
45
commits into
develop
Choose a base branch
from
feat/refactor-ci-tests
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
9b4ef1f
wip
netbe f9b9bc9
wip
netbe cb96d2f
wip
netbe b1b5fb3
test workflow
netbe 3a659be
test
netbe 4f810e5
fix workflow
netbe c6cf069
wip
netbe 1eaefcf
test
netbe 58d0572
test
netbe 6e1df52
test
netbe 230f481
fix
netbe 742b635
test
netbe 12e6a09
final
netbe b022931
fix error
netbe bb34714
Revert "test"
netbe 28595d8
remove space
netbe a55b237
fix workflows
netbe df226c3
fix all_folders
netbe 11b4ff2
wip refactor framework
netbe 4a86cd3
add prompt if no values given
netbe 3f1a0a1
clean up
netbe 05e2fe4
fix
netbe 257c202
Merge branch 'develop' into feat/refactor-ci-tests
netbe 35a5db8
try modify develop workflow to run on schedule
netbe 49914b7
fix workflow
netbe b939a2b
add release branch
netbe 3c39e8c
Merge branch 'develop' into feat/refactor-ci-tests
netbe 3f4ee94
make WireFoundation testable
netbe f29b819
notify failure for all tests of release and develop
netbe 7f2e25e
fix testing WireDomain and WireAPI
netbe 79f252b
reorganise files
netbe bcdc7b2
test warnings loop
netbe 283388b
fix name of folders matching frameworks
netbe 42d8842
remove non matching frameworks - nil
netbe c5e85d9
fix WireDomain
netbe b4296aa
fix plans location
netbe 374d684
add always condition
netbe 0383840
rework the warnings into a job
netbe 1797a97
fix
netbe 0b44c5e
Merge branch 'develop' into feat/refactor-ci-tests
netbe fc4ea55
fix syntax
netbe 9381371
test
netbe 59070b7
fix xcresults
netbe 548507c
fix xcrun not found
netbe 1a03543
Merge branch 'develop' into feat/refactor-ci-tests
netbe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,19 +1,22 @@ | ||
name: Test Develop | ||
name: Test Develop and Release branches | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'develop' | ||
|
||
schedule: | ||
- cron: "0 21 * * *" | ||
|
||
# This is what will cancel the workflow | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
trigger_tests_develop: | ||
trigger_tests: | ||
strategy: | ||
matrix: | ||
branch: [develop, release/cycle-3.113] # List other branches here | ||
uses: ./.github/workflows/_reusable_run_tests.yml | ||
with: | ||
all: true | ||
branch: ${{ matrix.branch }} | ||
secrets: inherit |
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
File renamed without changes.
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we'll need to apply these changes to the release branch in order for it to work (at least adding test plans)