-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Feature/release branch gitflow #4034
Merged
Merged
Changes from 22 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
7d9c122
release branch gitflow
luqmanbello 3b44b62
installer test
luqmanbello f90717b
Revert intel build fix
luqmanbello 6415989
Merge branch 'develop' into feature/release-branch-gitflow
luqmanbello 05f6b51
poetry install
luqmanbello 502efc4
Mac build poetry fix
luqmanbello 586002f
Poetry cache clear
luqmanbello a4c61ec
Poetry fix
luqmanbello 83ec896
Added cancel
luqmanbello af23d6e
Merge branch 'develop' into feature/release-branch-gitflow
luqmanbello ad397aa
Minor fix
luqmanbello ba66d23
Merge branch 'develop' into feature/release-branch-gitflow
luqmanbello c3f154f
Github Pages fix
luqmanbello 70b8a0c
GH page fix
luqmanbello aa9ef58
Added condition to docker publish
luqmanbello 1eb4895
Merge branch 'develop' into feature/release-branch-gitflow
luqmanbello 28b56b5
Fix nightly build
luqmanbello d2475ea
Merge branch 'feature/release-branch-gitflow' of https://github.com/O…
luqmanbello 5bf9991
Added hotfix to integration test and build gh run
luqmanbello f74f3df
Minor fix
luqmanbello d251568
Edit trigger for integration test
luqmanbello d472e62
Merge branch 'develop' into feature/release-branch-gitflow
jmaslek 8b3643d
minor corrections
luqmanbello ee334c7
Merge branch 'feature/release-branch-gitflow' of https://github.com/O…
luqmanbello 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
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,56 @@ | ||
name: Trigger Build on Release and PRs to Main | ||
|
||
env: | ||
OPENBB_ENABLE_QUICK_EXIT: true | ||
OPENBB_LOG_COLLECT: false | ||
OPENBB_USE_ION: false | ||
OPENBB_USE_PROMPT_TOOLKIT: false | ||
PIP_DEFAULT_TIMEOUT: 100 | ||
PYTHONNOUSERSITE: 1 | ||
|
||
on: | ||
push: | ||
branches: | ||
- release/* | ||
- hotfix/* | ||
- main | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
actions: write | ||
|
||
jobs: | ||
trigger-windows-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger Windows Build | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: windows10_build.yml | ||
|
||
trigger-macos-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger Windows Build | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: m1_macos_build.yml | ||
|
||
trigger-intel-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger Windows Build | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: intel_macos_build.yml | ||
|
||
trigger-docker-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger Windows Build | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: docker.yml |
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
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.
Isnt this what caused the issue the other day?
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.
It's actually when it's on
pull_request
that it was giving issuesThere 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.
@jmaslek please help approve. there is also a fix for nightly build here