diff --git a/.github/workflows/functional.yaml b/.github/workflows/functional.yaml index 5f70294..bfaba58 100644 --- a/.github/workflows/functional.yaml +++ b/.github/workflows/functional.yaml @@ -10,18 +10,15 @@ jobs: 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" - - 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: @@ -46,7 +43,7 @@ jobs: if: always() - name: Upload logs artifacts if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: functional-${{ matrix.name }} path: /tmp/devstack-logs/* diff --git a/src/common.rs b/src/common.rs index 317c6b2..1bac7fc 100644 --- a/src/common.rs +++ b/src/common.rs @@ -195,7 +195,7 @@ where } #[cfg(test)] -pub mod test { +pub(crate) mod test { use serde::{Deserialize, Serialize}; use serde_json; diff --git a/src/endpointfilters.rs b/src/endpointfilters.rs index dfa9c74..f346512 100644 --- a/src/endpointfilters.rs +++ b/src/endpointfilters.rs @@ -313,7 +313,7 @@ pub mod test { #[test] fn test_valid_interfaces_basics() { - assert_eq!(std::mem::size_of::(), 4); + assert_eq!(size_of::(), 4); let empty = ValidInterfaces::empty(); assert_eq!(empty.len(), 0);