feat: update reqwest to 0.12 #57
Workflow file for this run
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: Functional | |
on: | |
- pull_request | |
jobs: | |
functional: | |
strategy: | |
fail-fast: false | |
matrix: | |
name: ["master"] | |
openstack_version: ["master"] | |
ubuntu_version: ["22.04"] | |
include: | |
- name: "dolmatian" | |
openstack_version: "stable/2024.2" | |
ubuntu_version: "22.04" | |
- name: "caracal" | |
openstack_version: "stable/2024.1" | |
ubuntu_version: "22.04" | |
- name: "bobcat" | |
openstack_version: "stable/2023.2" | |
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@v4 | |
with: | |
name: functional-${{ matrix.name }} | |
path: /tmp/devstack-logs/* |