Skip to content

CI: new versions of OpenStack & periodic jobs #53

CI: new versions of OpenStack & periodic jobs

CI: new versions of OpenStack & periodic jobs #53

Workflow file for this run

on:
pull_request
push
schedule:

Check failure on line 4 in .github/workflows/with-defaults.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/with-defaults.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
- cron: '0 8 * * 0'
jobs:
with_defaults:
strategy:
fail-fast: false
matrix:
name: ["master"]
openstack_version: ["master"]
ubuntu_version: ["22.04"]
include:
- name: "master"
openstack_version: "master"
ubuntu_version: "22.04"
additional_services: "openstack-cli-server"
- name: "dalmatian"
openstack_version: "stable/2024.2"
ubuntu_version: "22.04"
additional_services: "openstack-cli-server"
- name: "caracal"
openstack_version: "stable/2024.1"
ubuntu_version: "22.04"
additional_services: ""
- name: "bobcat"
openstack_version: "stable/2023.2"
ubuntu_version: "22.04"
additional_services: ""
runs-on: ubuntu-${{ matrix.ubuntu_version }}
name: A job to deploy devstack with defaults
steps:
- name: Checkout devstack-action
uses: actions/checkout@v4
- name: Deploy devstack
uses: ./
with:
branch: ${{ matrix.openstack_version }}
enabled_services: '${{ matrix.additional_services }}'
- name: Upload logs artifacts on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: functional-basic-${{ matrix.name }}
path: /tmp/devstack-logs/*