mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 10:10:25 +00:00
ci(arch): add CI for latest-arch
This commit is contained in:
parent
34285b854a
commit
055e51e5b4
3 changed files with 47 additions and 5 deletions
46
.github/workflows/main.yml
vendored
46
.github/workflows/main.yml
vendored
|
@ -642,6 +642,52 @@ jobs:
|
|||
bundle exec kitchen destroy py3-git-master-arch
|
||||
|
||||
|
||||
latest-arch:
|
||||
name: Arch Latest packaged release
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 20
|
||||
|
||||
needs: lint
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Setup Ruby
|
||||
uses: actions/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 2.6.x
|
||||
|
||||
- name: Install Bundler
|
||||
run: |
|
||||
gem install bundler
|
||||
|
||||
- name: Setup Bundle
|
||||
run: |
|
||||
bundle install --with docker --without opennebula ec2 windows vagrant
|
||||
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.7
|
||||
|
||||
- name: Install Python Dependencies
|
||||
run: |
|
||||
pip install -U pip
|
||||
pip install -r tests/requirements.txt
|
||||
|
||||
- name: Create Test Container
|
||||
run: |
|
||||
bundle exec kitchen create latest-arch || bundle exec kitchen create latest-arch
|
||||
|
||||
- name: Test Bootstrap In Test Container
|
||||
run: |
|
||||
bundle exec kitchen verify latest-arch
|
||||
|
||||
- name: Destroy Test Container
|
||||
if: always()
|
||||
run: |
|
||||
bundle exec kitchen destroy latest-arch
|
||||
|
||||
|
||||
py3-stable-3000-centos-7:
|
||||
name: CentOS 7 v3000 Py3 Stable
|
||||
runs-on: ubuntu-latest
|
||||
|
|
4
.github/workflows/templates/generate.py
vendored
4
.github/workflows/templates/generate.py
vendored
|
@ -101,9 +101,7 @@ BRANCH_DISPLAY_NAMES = {
|
|||
|
||||
STABLE_BRANCH_BLACKLIST = []
|
||||
|
||||
LATEST_PKG_BLACKLIST = [
|
||||
"arch", # No packages are built
|
||||
]
|
||||
LATEST_PKG_BLACKLIST = []
|
||||
|
||||
DISTRO_DISPLAY_NAMES = {
|
||||
"amazon-2": "Amazon 2",
|
||||
|
|
|
@ -229,8 +229,6 @@ suites:
|
|||
provisioner:
|
||||
salt_version: latest
|
||||
salt_bootstrap_options: -MP stable %s
|
||||
excludes:
|
||||
- arch
|
||||
|
||||
verifier:
|
||||
name: shell
|
||||
|
|
Loading…
Add table
Reference in a new issue