-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DLPX-92585 Fix merge failure in cloud-init
- Loading branch information
Showing
301 changed files
with
22,852 additions
and
3,462 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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
documentation: | ||
- doc/* | ||
- all: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- 'doc/**' | ||
- 'cloudinit/config/schemas/**' | ||
- base-branch: ['main'] |
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
matrix: | ||
env: [ruff, mypy, pylint, black, isort] | ||
name: Check ${{ matrix.env }} | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: "Checkout #1" | ||
uses: actions/[email protected] | ||
|
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
name: PR Labeler | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v5 |
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,47 @@ | ||
name: Packaging Tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'ubuntu/**' | ||
|
||
concurrency: | ||
group: 'ci-${{ github.workflow }}-${{ github.ref }}' | ||
cancel-in-progress: true | ||
|
||
defaults: | ||
run: | ||
shell: sh -ex {0} | ||
|
||
env: | ||
RELEASE: focal | ||
|
||
jobs: | ||
check-patches: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
# Fetch all branches for merging | ||
fetch-depth: 0 | ||
- name: Prepare dependencies | ||
run: | | ||
sudo DEBIAN_FRONTEND=noninteractive apt-get update | ||
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install tox quilt | ||
- name: Setup quilt environment | ||
run: | | ||
echo 'QUILT_PATCHES=debian/patches' >> ~/.quiltrc | ||
echo 'QUILT_SERIES=debian/patches/series' >> ~/.quiltrc | ||
- name: 'Daily recipe: quilt patches apply successfully and tests run' | ||
run: | | ||
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git remote add upstream https://git.launchpad.net/cloud-init | ||
git fetch upstream main | ||
git checkout upstream/main | ||
git merge ${{ github.sha }} | ||
quilt push -a | ||
tox -e py3 | ||
quilt pop -a |
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
Oops, something went wrong.