-
Notifications
You must be signed in to change notification settings - Fork 0
Add Brioche nightly support #11
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
Merged
Merged
Changes from 7 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
1f7c0b6
feat: add nightly Brioche channel support when installing it
jaudiger f84f2fd
feat: add the possibility to install aarch64 version of Brioche when …
jaudiger ef2e061
chore(ci): update tests of the GitHub Action
jaudiger 0646169
fix(ci): set the anchor at the correct level in the job
jaudiger 57718ba
refactor(ci): simplify tests by merging them and using a matrix
jaudiger e10fafc
ci: add fail-fast false to strategy
jaudiger 5d53771
chore: udate install-brioche.sh to handle 'latest' version as the act…
jaudiger c4060fa
refactor: merge version and channel into one common field
jaudiger 5cd909f
fix: update lockfile of example project
jaudiger 931e18c
ci: add FIXME comment for ARM architecture support in Brioche stable
jaudiger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -23,7 +23,7 @@ jobs: | |||||||
| - name: Setup Brioche | ||||||||
| uses: brioche-dev/setup-brioche@v1 | ||||||||
| with: | ||||||||
| version: 'v0.1.5' # Optional, specify a version or use the default (v0.1.5) | ||||||||
| version: "v0.1.5" # Optional, specify a version or use the default (latest) | ||||||||
| install-dir: '/custom/install/path' # Optional, specify a custom installation path | ||||||||
|
|
||||||||
| - name: Verify Brioche installation | ||||||||
|
|
@@ -32,7 +32,8 @@ jobs: | |||||||
|
|
||||||||
| ## Inputs | ||||||||
|
|
||||||||
| - `version`: (Optional) The version of Brioche to install. Defaults to `v0.1.5` (the latest version). | ||||||||
| - `version`: (Optional) The version of Brioche to install. Defaults to `latest`. | ||||||||
| - `channel`: (Optional) The channel to install from (stable or nightly). | ||||||||
| - `install-dir`: (Optional) The directory where Brioche should be installed. Defaults to `$HOME/.local/bin`. | ||||||||
| - `install-apparmor`: (Optional) Enable or disable installation of an AppArmor profile for Brioche. Defaults to `auto`, which will automatically install it if required (e.g. on Ubuntu 24.04). | ||||||||
|
|
||||||||
|
|
@@ -65,7 +66,7 @@ jobs: | |||||||
| - name: Setup Brioche | ||||||||
| uses: brioche-dev/setup-brioche@v1 | ||||||||
| # with: | ||||||||
| # version: "v0.1.5" # Optional | ||||||||
| # version: "latest" # Optional | ||||||||
|
||||||||
| # version: "latest" # Optional | |
| # version: "v0.1.5" # Optional | |
| # channel: "latest" # Optional |
Contributor
Author
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.
Kinda done, since it's now removed
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Just found out that GitHub Actions doesn't seem to support
ubuntu-latest-arm(and they don't plan to add it). I think that's kinda annoying... so it seems sensible to just use a specific Ubuntu version for each of these jobs (we could keep usingubuntu-latestbut to keep it symmetric I'd lean towards keeping all of them pinned together)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.
Ok, I updated it in c4060fa. And I took the opportunity to re-add
ubuntu-latestin the matrix of the smoke test