-
Notifications
You must be signed in to change notification settings - Fork 59
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
Fix CI workflows #1364
Fix CI workflows #1364
Conversation
60e0971
to
df3c233
Compare
os: "macos-latest" | ||
target: "x86_64-apple-darwin" | ||
os: "macos" | ||
target: "aarch64-apple-darwin" |
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.
Why we do it just for aarch and not both arch and x86?
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.
Same question for ubuntu
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.
+1 for mac
Re: ubuntu on arm CPU - we never tried it before. Worth adding in scope of another PR.
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.
@avifenesh out of scope of this PR - can be added in a different one
- ubuntu-latest | ||
- macos-latest | ||
runs-on: ${{ matrix.os }} | ||
host: |
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 like that
TIL
os: "macos-latest" | ||
target: "x86_64-apple-darwin" | ||
os: "macos" | ||
target: "aarch64-apple-darwin" |
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.
+1 for mac
Re: ubuntu on arm CPU - we never tried it before. Worth adding in scope of another PR.
benchmarks/install_and_test.sh
Outdated
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.
Please, rebase, #1366 already merged
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.
Re: ubuntu on arm CPU - we never tried it before. Worth adding in scope of another PR.
On our deployment workflows we build for arm64Xubuntu with the self-hosted runner.
We need to open a test to have some minimal integration tests on all platforms, but as I said above - out of scope for this PR
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.
Nicely done!
* C#: Added a dotnet framework flag to the C# benchmark * CI: Fix CI workflows to work with MacOS 13 (the version of the new macos-latest runner) * Addressing comments
* C#: Added a dotnet framework flag to the C# benchmark * CI: Fix CI workflows to work with MacOS 13 (the version of the new macos-latest runner) * Addressing comments
Based on #1358.
This PR:
2.The latest MacOS requires installation flag for python installation
Rebased over #1366