Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test spread checkout from FORK #16

Open
wants to merge 4 commits into
base: ubuntu-20.04
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ jobs:
lint:
name: Lint
uses: canonical/chisel-releases/.github/workflows/lint.yaml@main

integration-tests:
name: Integration tests
uses: cjdcordeiro/chisel-releases/.github/workflows/spread.yaml@main
7 changes: 7 additions & 0 deletions slices/libpython3.8-stdlib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ slices:
essential:
- libbz2-1.0_libs
- libc6_libs
# Adding libgcc-s1 here because it is required for the arm arch.
# In practice, libc6 should bring it anyway, BUT, there is a circular
# dependency in the archives, where libc6 depends on libgcc-s1 and
# vice versa. We don't allow that circular dependency to exist in Chisel
# and libgcc-s1 already depends on libc6, so we'll have to include this
# line here, explicitly.
- libgcc-s1_libs
- liblzma5_libs
- libpython3.8-minimal_libs
- mime-support_mime-types
Expand Down
1 change: 1 addition & 0 deletions tests/spread/integration/base-passwd/task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ summary: Integration tests for base-passwd

execute: |
rootfs="$(install-slices base-passwd_data)"
# TEST

test -f ${rootfs}/etc/group
! grep FIXME ${rootfs}/etc/group
Expand Down
Loading