Skip to content

tests(pro): bump pycloudlib add noble release to pro tests #4710

tests(pro): bump pycloudlib add noble release to pro tests

tests(pro): bump pycloudlib add noble release to pro tests #4710

Workflow file for this run

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:
build-package-and-run-tests:
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
- 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 '${{ runner.temp }}'
echo ${{ runner.temp }}/cloud-init*.deb || true
ls -hal ${{ runner.temp }}/cloud-init*.deb || true
- 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: |
CLOUD_INIT_CLOUD_INIT_SOURCE="$(ls ${{ runner.temp }}/cloud-init*.deb)" tox -e integration-tests-ci -- --color=yes