-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vagrant on macos is fragile recently, try to use lxc. Signed-off-by: Kentaro Hayashi <[email protected]>
- Loading branch information
Showing
12 changed files
with
92 additions
and
81 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 |
---|---|---|
|
@@ -95,22 +95,36 @@ jobs: | |
test: | ||
name: Test | ||
needs: build | ||
runs-on: macos-latest | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
distribution: | ||
- debian-bullseye | ||
- debian-bookworm | ||
- ubuntu-focal | ||
- ubuntu-jammy | ||
label: | ||
- Debian GNU/Linux bullseye amd64 | ||
- Debian GNU/Linux bookworm amd64 | ||
- Ubuntu Focal amd64 | ||
- Ubuntu Jammy amd64 | ||
include: | ||
- label: Debian GNU/Linux bullseye amd64 | ||
rake-job: debian-bullseye | ||
test-lxc-image: images:debian/11 | ||
- label: Debian GNU/Linux bookworm amd64 | ||
rake-job: debian-bookworm | ||
test-lxc-image: images:debian/12 | ||
- label: Ubuntu Focal amd64 | ||
rake-job: ubuntu-focal | ||
test-lxc-image: ubuntu:20.04 | ||
- label: Ubuntu Jammy amd64 | ||
rake-job: ubuntu-jammy | ||
test-lxc-image: ubuntu:22.04 | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/download-artifact@master | ||
with: | ||
name: packages-${{ matrix.distribution }} | ||
name: packages-${{ matrix.rake-job }} | ||
- uses: actions/download-artifact@master | ||
with: | ||
name: packages-apt-source-${{ matrix.distribution }} | ||
- name: Run Test | ||
run: fluent-package/apt/systemd-test/test.sh ${{ matrix.distribution }} | ||
name: packages-apt-source-${{ matrix.rake-job }} | ||
- uses: canonical/[email protected] | ||
- name: Run Test | ||
run: fluent-package/apt/systemd-test/test.sh ${{ matrix.test-lxc-image }} |
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 |
---|---|---|
|
@@ -92,20 +92,30 @@ jobs: | |
test: | ||
name: Test | ||
needs: build | ||
runs-on: macos-latest | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
distribution: | ||
- centos-7 | ||
- rockylinux-8 | ||
- almalinux-9 | ||
- amazonlinux-2 | ||
# - amazonlinux-2023 | ||
label: | ||
# CGroup V1 is not supported | ||
# - CentOS 7 x86_64 | ||
- RockyLinux 8 x86_64 | ||
- AlmaLinux 9 x86_64 | ||
include: | ||
# - label: CentOS 7 x86_64 | ||
# rake-job: centos-7 | ||
# test-lxc-image: images:centos/7 | ||
- label: RockyLinux 8 x86_64 | ||
rake-job: rockylinux-8 | ||
test-lxc-image: images:rockylinux/8 | ||
- label: AlmaLinux 9 x86_64 | ||
rake-job: almalinux-9 | ||
test-lxc-image: images:almalinux/9 | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/download-artifact@master | ||
with: | ||
name: packages-${{ matrix.distribution }} | ||
name: packages-${{ matrix.rake-job }} | ||
- uses: canonical/[email protected] | ||
- name: Run Test | ||
run: fluent-package/yum/systemd-test/test.sh ${{ matrix.distribution }} | ||
run: fluent-package/yum/systemd-test/test.sh ${{ matrix.test-lxc-image }} |
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
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
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
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
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