chore: bump ci dependency versions #4568
Workflow file for this run
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
name: Integration Tests | |
on: | |
pull_request: | |
branches-ignore: | |
- 'ubuntu/**' | |
push: | |
branches: | |
- main | |
concurrency: | |
group: 'ci-${{ github.workflow }}-${{ github.ref }}' | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: sh -ex {0} | |
env: | |
RELEASE: focal | |
jobs: | |
package-build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
with: | |
# Fetch all tags for tools/read-version | |
fetch-depth: 0 | |
- name: Prepare dependencies | |
run: | | |
sudo DEBIAN_FRONTEND=noninteractive apt-get update | |
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install \ | |
fakeroot \ | |
sbuild \ | |
ubuntu-dev-tools \ | |
tox \ | |
wireguard \ | |
$(\ | |
./tools/read-dependencies \ | |
--requirements-file requirements.txt \ | |
--requirements-file test-requirements.txt \ | |
--distro ubuntu \ | |
--system-pkg-names 2> /dev/null \ | |
| tr '\n' ' ' \ | |
) | |
sudo sbuild-adduser $USER | |
cp /usr/share/doc/sbuild/examples/example.sbuildrc /home/$USER/.sbuildrc | |
# Install all build and test dependencies | |
./tools/read-dependencies -r requirements.txt -r test-requirements.txt -d ubuntu -s -i | |
- name: Build package | |
run: | | |
./packages/bddeb -S -d --release ${{ env.RELEASE }} | |
sudo -E su $USER -c 'mk-sbuild ${{ env.RELEASE }}' | |
sudo -E su $USER -c 'DEB_BUILD_OPTIONS=nocheck sbuild --nolog --no-run-lintian --no-run-autopkgtest --verbose --dist=${{ env.RELEASE }} --build-dir=${{ runner.temp }} cloud-init_*.dsc' | |
- name: Archive debs as artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'cloud-init-${{ env.RELEASE }}-deb' | |
path: '${{ runner.temp }}/cloud-init*.deb' | |
retention-days: 3 | |
- name: Setup LXD | |
uses: canonical/[email protected] | |
with: | |
channel: latest/candidate | |
- name: Verify deb package | |
run: | | |
ls -hal cloud-init*.deb | |
- name: Set up Pycloudlib | |
run: | | |
ssh-keygen -P "" -q -f ~/.ssh/id_rsa | |
echo "[lxd]" > /home/$USER/.config/pycloudlib.toml | |
- name: Run integration Tests | |
run: | | |
sh -c 'CLOUD_INIT_CLOUD_INIT_SOURCE="$(ls cloud-init*.deb)" tox -e integration-tests-ci' |