diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 96399b4..f397faa 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -11,19 +11,19 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04] - version: [2.9, '3.0', 3.1, 3.2, master] + os: [ubuntu-22.04] + ceph: [quincy] include: - os: ubuntu-18.04 - version: 2.8 + ceph: pacific runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - - name: Clone MAAS repository - run: git clone https://git.launchpad.net/maas -b ${{ matrix.version }} --depth 1 - - name: Install MAAS dependencies - run: (cd ./maas && sudo make install-dependencies && sudo pip3 install -r requirements-dev.txt) - - name: pip freeze - run: pip3 freeze + - name: Install ceph + run: | + apt update && apt install cephadm ceph-common + fallocate -l 4G /tmp/osd-1.img + losetup -f /tmp/osd-1.img + lsblk - name: Run test - run: sudo python3 -m unittest test.py \ No newline at end of file + run: true \ No newline at end of file