forked from canonical/cloud-init
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: migrate integration-test to GH actions (canonical#1969)
changes: - drop caching machinery for LXD images and chroots - divide the workflow in two steps, one for building packages and other for running the tests so that the second one can be retried in case of error
- Loading branch information
Showing
2 changed files
with
84 additions
and
105 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 |
---|---|---|
@@ -0,0 +1,84 @@ | ||
name: Integration Tests | ||
|
||
on: | ||
pull_request: | ||
branches-ignore: | ||
- 'ubuntu/**' | ||
|
||
concurrency: | ||
group: 'ci-${{ github.workflow }}-${{ github.ref }}' | ||
cancel-in-progress: true | ||
|
||
defaults: | ||
run: | ||
shell: sh -ex {0} | ||
|
||
env: | ||
RELEASE: bionic | ||
|
||
jobs: | ||
package-build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v3 | ||
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 \ | ||
debhelper \ | ||
dh-python \ | ||
fakeroot \ | ||
python3-setuptools \ | ||
sbuild \ | ||
ubuntu-dev-tools | ||
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@v3 | ||
with: | ||
name: 'cloud-init-${{ env.RELEASE }}-deb' | ||
path: '${{ runner.temp }}/cloud-init*.deb' | ||
retention-days: 3 | ||
|
||
integration-tests: | ||
needs: package-build | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v3 | ||
with: | ||
# Fetch all tags for tools/read-version | ||
fetch-depth: 0 | ||
- name: Retrieve cloud-init package | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: 'cloud-init-${{ env.RELEASE }}-deb' | ||
- name: Verify deb package | ||
run: | | ||
ls -hal cloud-init*.deb | ||
- name: Prepare test tools | ||
run: | | ||
sudo DEBIAN_FRONTEND=noninteractive apt-get -y update | ||
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install tox wireguard | ||
- name: Initialize LXD | ||
run: | | ||
ssh-keygen -P "" -q -f ~/.ssh/id_rsa | ||
echo "[lxd]" > /home/$USER/.config/pycloudlib.toml | ||
sudo adduser $USER lxd | ||
# Jammy GH Action runners have docker installed, which edits iptables | ||
# in a way that is incompatible with lxd. | ||
# https://linuxcontainers.org/lxd/docs/master/howto/network_bridge_firewalld/#prevent-issues-with-lxd-and-docker | ||
sudo iptables -I DOCKER-USER -j ACCEPT | ||
sudo lxd init --auto | ||
- name: Run integration Tests | ||
run: | | ||
sg lxd -c 'CLOUD_INIT_CLOUD_INIT_SOURCE="$(ls cloud-init*.deb)" tox -e integration-tests-ci' |
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