-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add Smoke tests to CI and release flows #26
Conversation
57eb50d
to
4774f78
Compare
@@ -6,7 +6,7 @@ on: | |||
- "v*" | |||
|
|||
jobs: | |||
aarch64-apple-darwin: | |||
aarch64-apple-darwin-release: |
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.
I renamed these jobs to avoid name conflicts with the jobs defined in build.yml
.
.github/workflows/build.yml
Outdated
toolchain: stable | ||
override: true | ||
target: x86_64-unknown-linux-musl | ||
- uses: Swatinem/rust-cache@v1 |
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.
You may get warnings from GitHub that @v1
is out of date. I believe @v2
is enough to resolve this, i.e. there's nothing else you need to do except change the version.
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.
Not precisely the goal of this PR, but I also updated action versions to get rid of GH warnings.
I couldn't get rid of every warning because some actions do not have never versions released. Some PRs to track:
actions-rs/toolchain#220
actions-rs/cargo#223
Added smoke tests to ensure the binary we produce can be executed.
for MacOS ARM64, we are cross-compiling as there's currently no support for MacOS ARM64 image in GH Actions.
Due to the cross-compilation, we can't run a smoke test there.