-
Notifications
You must be signed in to change notification settings - Fork 31
Add release verification workflow #21
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
base: main
Are you sure you want to change the base?
Conversation
Add local checks in case of release trigger. This workflow will build & test the code repo and delete the tag in case of failed build.
77fa81f to
5ecfbca
Compare
|
This PR won't be merged from here. This is just a test. |
| build_host: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4.2.2 | ||
| - name: Setup Bazel | ||
| uses: bazel-contrib/setup-bazel@0.9.1 | ||
| - name: Bazel build baselibs targets | ||
| run: | | ||
| bazel build --config bl-x86_64-linux -- //score/... | ||
| build_qnx: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4.2.2 | ||
| - name: Setup Bazel | ||
| uses: bazel-contrib/setup-bazel@0.9.1 | ||
| - name: Bazel build baselibs targets | ||
| run: | | ||
| bazel build --config bl-x86_64-linux -- //score/... |
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.
The steps of these two jobs are completely identical. Maybe you missed changing the bazel config in one of the jobs?
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.
yeah, copy/paste error.
|
@nradakovic, the release workflow is already merged to main. Can I close this PR? |
Add local checks in case of release trigger. This workflow will build & test the code repo and delete the tag in case of failed build.