-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into work/bash-completion/CRAFT-3875
- Loading branch information
Showing
94 changed files
with
387 additions
and
411 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,4 +58,3 @@ body: | |
render: shell | ||
validations: | ||
required: true | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
- [ ] Have you signed the [CLA](http://www.ubuntu.com/legal/contributors/)? | ||
|
||
----- | ||
--- |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Add 'documentation' label to any changes within 'docs' folder or any subfolders | ||
documentation: | ||
- changed-files: | ||
- any-glob-to-any-file: docs/** | ||
- changed-files: | ||
- any-glob-to-any-file: docs/** |
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
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 |
---|---|---|
|
@@ -20,7 +20,9 @@ repos: | |
args: [--fix, --exit-non-zero-on-fix] | ||
# Run the formatter | ||
- id: ruff-format | ||
- repo: https://github.com/adrienverge/yamllint.git | ||
rev: "v1.35.1" | ||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: "" # Intentionally blank, despite the warning. | ||
hooks: | ||
- id: yamllint | ||
- id: prettier | ||
additional_dependencies: | ||
- [email protected] |
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,6 @@ | ||
# Tool-generated | ||
schema/rockcraft.json | ||
|
||
# External code | ||
tools/external | ||
docs/sphinx-starter-pack |
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
8 changes: 4 additions & 4 deletions
8
docs/how-to/code/chisel-existing-rock/bare-rock/rockcraft.yaml
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
name: bare-python | ||
base: bare # using a bare base | ||
build-base: [email protected] # using Ubuntu Jammy only for the build environment | ||
base: bare # using a bare base | ||
build-base: [email protected] # using Ubuntu Jammy only for the build environment | ||
version: "3.11" | ||
summary: Python3.11 rock with a bare base | ||
description: Example of a distroless-like Python rock | ||
platforms: | ||
amd64: | ||
run-user: _daemon_ # setting a non-root user for the rock | ||
run-user: _daemon_ # setting a non-root user for the rock | ||
parts: | ||
install-python: | ||
plugin: nil | ||
# install Python3.11 | ||
stage-packages: | ||
- base-files # also install base-files to ensure a basic filesystem structure | ||
- base-files # also install base-files to ensure a basic filesystem structure | ||
- python3.11 |
6 changes: 3 additions & 3 deletions
6
docs/how-to/code/chisel-existing-rock/chiselled-rock/rockcraft.yaml
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name: chiselled-python | ||
base: bare # using a bare base | ||
build-base: [email protected] # using Ubuntu Jammy only for the build environment | ||
base: bare # using a bare base | ||
build-base: [email protected] # using Ubuntu Jammy only for the build environment | ||
version: "3.11" | ||
summary: Chiselled Python3.11 rock | ||
description: Example of a chiselled Python rock | ||
platforms: | ||
amd64: | ||
run-user: _daemon_ # setting a non-root user for the rock | ||
run-user: _daemon_ # setting a non-root user for the rock | ||
parts: | ||
install-python-slices: | ||
plugin: nil | ||
|
Oops, something went wrong.