make separate home partition optional #56
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: CI for test actions | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'feature/**' | |
- 'fix/**' | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
test-host-system-install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v2 | |
- name: Install missing packages | |
run: sudo apt-get --no-install-recommends --yes install debootstrap | |
- name: Execute test | |
run: sudo ./test/test.sh install-system ALL | |
test-lxc-image-install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v2 | |
- name: Install missing packages | |
run: sudo apt-get --no-install-recommends --yes install debootstrap | |
- name: Execute test | |
run: sudo ./test/test.sh install-lxc-image ALL | |
test-docker-image-install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v2 | |
- name: Install missing packages | |
run: sudo apt-get --no-install-recommends --yes install debootstrap | |
- name: Execute test | |
run: sudo ./test/test.sh install-docker-image ALL |