Skip to content

chore(query): improve Query docs #51

chore(query): improve Query docs

chore(query): improve Query docs #51

Workflow file for this run

name: Functional
on:
- pull_request
jobs:
functional:
strategy:
fail-fast: false
matrix:
name: ["master"]
openstack_version: ["master"]
ubuntu_version: ["22.04"]
include:
- name: "caracal"
openstack_version: "stable/2024.1"
ubuntu_version: "22.04"
- name: "bobcat"
openstack_version: "stable/2023.2"
ubuntu_version: "22.04"
- name: "antelope"
openstack_version: "stable/2023.1"
ubuntu_version: "22.04"
- name: "zed"
openstack_version: "stable/zed"
ubuntu_version: "22.04"
runs-on: ubuntu-${{ matrix.ubuntu_version }}
name: Deploy OpenStack ${{ matrix.name }} and run examples
steps:
- name: Checkout the project
uses: actions/checkout@v4
- name: Deploy devstack
uses: EmilienM/[email protected]
with:
branch: ${{ matrix.openstack_version }}
enabled_services: swift
log_dir: /tmp/devstack-logs
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rust-version: stable
- name: Build the project
run: cargo build --release --all-features --all-targets
- name: Run tests
run: ./tools/test-functional.sh
- name: Generate logs
run: ./tools/collect-logs.sh
if: always()
- name: Upload logs artifacts
if: always()
uses: actions/upload-artifact@v3
with:
name: functional-${{ matrix.name }}
path: /tmp/devstack-logs/*