File: acceptance.yml

package info (click to toggle)
python-cs 3.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 216 kB
  • sloc: python: 1,127; makefile: 7
file content (91 lines) | stat: -rw-r--r-- 3,241 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.

# See https://github.com/apache/cloudstack-terraform-provider/blob/main/.github/workflows/acceptance.yml
name: Acceptance Test

on:
  pull_request:

concurrency:
  group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-acceptance
  cancel-in-progress: true

permissions:
  contents: read

env:
  CLOUDSTACK_API_URL: http://localhost:8080/client/api
  CLOUDSTACK_VERSIONS: "['1.7.0']"
jobs:
  prepare-matrix:
    runs-on: ubuntu-latest
    outputs:
      cloudstack-versions: ${{ steps.set-versions.outputs.cloudstack-versions }}
    steps:
      - name: Set versions
        id: set-versions
        run: |
          echo "cloudstack-versions=${{ env.CLOUDSTACK_VERSIONS }}" >> $GITHUB_OUTPUT

  acceptance-cs:
    name: Python ${{ matrix.python-version }} with CloudStack test container ${{ matrix.cloudstack-version }}
    needs: [prepare-matrix]
    runs-on: ubuntu-latest
    services:
      cloudstack-simulator:
        image: quay.io/ansible/cloudstack-test-container:${{ matrix.cloudstack-version }}
        ports:
          - 8080:8080
    strategy:
      fail-fast: false
      max-parallel: 1
      matrix:
        cloudstack-version: ${{ fromJson(needs.prepare-matrix.outputs.cloudstack-versions) }}
        python-version:
          - '3.12'
    steps:
      - uses: actions/checkout@v4
      - name: Configure Cloudstack v${{ matrix.cloudstack-version }}
        uses: ./.github/workflows/setup-cloudstack
        id: setup-cloudstack
        with:
          cloudstack-version: ${{ matrix.cloudstack-version }}
      - uses: actions/setup-python@v5
        with:
          python-version: ${{ matrix.python-version }}
      - name: Run acceptance test
        env:
          CLOUDSTACK_USER_ID: ${{ steps.setup-cloudstack.outputs.CLOUDSTACK_USER_ID }}
          CLOUDSTACK_KEY: ${{ steps.setup-cloudstack.outputs.CLOUDSTACK_API_KEY }}
          CLOUDSTACK_SECRET: ${{ steps.setup-cloudstack.outputs.CLOUDSTACK_SECRET_KEY }}
          CLOUDSTACK_ENDPOINT: ${{ steps.setup-cloudstack.outputs.CLOUDSTACK_API_URL }}
        run: |
          python -m venv .venv
          source .venv/bin/activate
          which python
          pip install .
          cs listZones

  all-jobs-passed: # Will succeed if it is skipped
    runs-on: ubuntu-latest
    needs: [acceptance-cs]
    # Only run if any of the previous jobs failed
    if: ${{ failure() }}
    steps:
      - name: Previous jobs failed
        run: exit 1