-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
6515eb8
commit a7318eb
Showing
16 changed files
with
239 additions
and
100 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Build and Publish RC | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+' | ||
|
||
# To test workflow updates you need to work in a branch directly on viamrobotics/rdk | ||
# and tag your working branch instead of @main in any viamrobotics/rdk "uses" below. | ||
# Don't forget to tag back to @main before merge. | ||
|
||
jobs: | ||
test: | ||
uses: viamrobotics/rdk/.github/workflows/test.yml@main | ||
secrets: | ||
MONGODB_TEST_OUTPUT_URI: ${{ secrets.MONGODB_TEST_OUTPUT_URI }} | ||
|
||
appimage: | ||
needs: test | ||
uses: viamrobotics/rdk/.github/workflows/appimage.yml@main | ||
with: | ||
release_type: 'rc' | ||
secrets: | ||
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }} | ||
|
||
staticbuild: | ||
needs: test | ||
uses: viamrobotics/rdk/.github/workflows/staticbuild.yml@main | ||
with: | ||
release_type: 'rc' | ||
secrets: | ||
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }} |
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,54 @@ | ||
name: Build and Publish Stable | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+' | ||
|
||
# To test workflow updates you need to work in a branch directly on viamrobotics/rdk | ||
# and tag your working branch instead of @main in any viamrobotics/rdk "uses" below. | ||
# Don't forget to tag back to @main before merge. | ||
|
||
jobs: | ||
test: | ||
uses: viamrobotics/rdk/.github/workflows/test.yml@main | ||
secrets: | ||
MONGODB_TEST_OUTPUT_URI: ${{ secrets.MONGODB_TEST_OUTPUT_URI }} | ||
|
||
appimage: | ||
needs: test | ||
uses: viamrobotics/rdk/.github/workflows/appimage.yml@main | ||
with: | ||
release_type: 'stable' | ||
secrets: | ||
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }} | ||
|
||
staticbuild: | ||
needs: test | ||
uses: viamrobotics/rdk/.github/workflows/staticbuild.yml@main | ||
with: | ||
release_type: 'stable' | ||
secrets: | ||
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }} | ||
|
||
slack-workflow-status: | ||
if: ${{ failure() }} | ||
name: Post Workflow Status To Slack | ||
needs: | ||
- test | ||
- appimage | ||
- staticbuild | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: 'read' | ||
steps: | ||
- name: Slack Workflow Notification | ||
uses: Gamesight/slack-workflow-status@master | ||
with: | ||
repo_token: ${{secrets.GITHUB_TOKEN}} | ||
slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL}} | ||
channel: '#team-devops' | ||
name: 'Workflow Status' |
Oops, something went wrong.