-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
TomDarmon
committed
Nov 13, 2023
1 parent
c38868f
commit bc75900
Showing
8 changed files
with
120 additions
and
30 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,14 @@ | ||
## Description of the goal of the PR | ||
|
||
|
||
## Changes this PR introduces (fill it before implementation) | ||
|
||
- [ ] | ||
|
||
## Checklist before requesting a review | ||
- [ ] The CI pipeline passes | ||
- [ ] I have typed my code | ||
- [ ] I have created / updated the docstrings | ||
- [ ] I have updated the README, if relevant | ||
- [ ] I have updated the requirements, if relevant | ||
- [ ] I have tested my code |
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,37 @@ | ||
# This workflow triggers the CI, updates the version, and uploads the release to GitHub and Google Cloud Storage when a push is made to either the 'main' or 'develop' branch. | ||
# | ||
# Workflow Steps: | ||
# | ||
# 1. Ci is triggered using the CI workflow defined in .github/workflows/ci.yaml | ||
# 2. If it succeeds, the version is updated using Python Semantic Release | ||
# 3. The release is uploaded to GitHub (same step and GitHub action) | ||
|
||
name: CI and Release on main | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
CI: | ||
uses: ./.github/workflows/ci.yaml | ||
|
||
Release: | ||
runs-on: ubuntu-latest | ||
concurrency: Release | ||
needs: CI | ||
permissions: | ||
id-token: write | ||
contents: write | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.GH_TOKEN }} | ||
|
||
- name: Python Semantic Release | ||
uses: python-semantic-release/python-semantic-release@master | ||
with: | ||
github_token: ${{ secrets.GH_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
byte_track: | ||
track_thresh: 0.45 | ||
track_buffer: 25 | ||
match_thresh: 0.8 | ||
frame_rate: 30 | ||
match_thresh: 0.8 | ||
frame_rate: 30 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
lapx>=0.5.5 | ||
scipy==1.9.3 | ||
torch>=1.13 | ||
torch>=1.13 |