-
Notifications
You must be signed in to change notification settings - Fork 49
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
test: Add integration testing workflow dispatcher #495
Open
ghbogarin
wants to merge
11
commits into
muxinc:main
Choose a base branch
from
ghbogarin:feature/external-integration-tests
base: main
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.
Open
test: Add integration testing workflow dispatcher #495
ghbogarin
wants to merge
11
commits into
muxinc:main
from
ghbogarin:feature/external-integration-tests
Conversation
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
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
ghbogarin
changed the title
feat(mux-player): Add integration testing workflow dispatcher
feat: Add integration testing workflow dispatcher
Nov 9, 2022
Codecov Report
@@ Coverage Diff @@
## main #495 +/- ##
==========================================
+ Coverage 84.67% 84.72% +0.05%
==========================================
Files 40 40
Lines 7476 7504 +28
Branches 391 391
==========================================
+ Hits 6330 6358 +28
Misses 1143 1143
Partials 3 3
|
luwes
changed the title
feat: Add integration testing workflow dispatcher
test: Add integration testing workflow dispatcher
Mar 14, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Created a workflow dispatcher that takes a mux-player version as an input and runs tests on that version of the player. Tests run on an action at playback-testing repository (private) and once they are completed, a workflow execution is triggered on mux-elements side to display the results.
1:
Input Mux-Player version and click on Run Workflow
2:
A repository_dispatch event id triggered on Playback-testing side using Github’s API.
3:
Once tests are completed on playback-testing side, a repository_dispatch event is triggered on Mux-Elements using Github API, sending the test results to Mux-Elements.
4.
Summary is used to display test results:
Configuration:
For communication between the repositories a personal access token is needed (an account with access to the repository to be triggered is needed). The steps on this link can be followed to generate the token. In the scope, select Workflow:
Once the token is generated, this token will have to be added as an action secret with the name ‘ACCESS_TOKEN’. To do that, follow these steps:
Notes:
A token with name ‘ACCESS_TOKEN’ must be in both repositories. It's already set up on Playback-Testing.