-
Notifications
You must be signed in to change notification settings - Fork 189
76 lines (74 loc) · 2.04 KB
/
acc-test.yaml
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
name: Acc Tests
on:
push:
branches:
- master
- "release/**"
pull_request:
types: ['opened', 'synchronize']
paths:
- '**.go'
- go.mod
- '.github/workflows/**'
env:
GOPROXY: https://proxy.golang.org,direct
DEBIAN_FRONTEND: noninteractive
GO_VERSION: "1.18"
TESTSUITE_TIMEOUT: "720s"
jobs:
acc-test:
runs-on: ubuntu-20.04
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
terraform_version:
- "0.15.x"
- "1.1.x"
resource_type:
- "TestAccDockerConfig"
- "TestAccDockerContainer"
- "TestAccDockerImage"
- "TestAccDockerNetwork"
- "TestAccDockerPlugin"
- "TestAccDockerRegistryImage"
- "TestAccDockerSecret"
- "TestAccDockerService"
- "TestAccDockerVolume"
- "TestAccDockerTag"
include:
- resource_type: TestAccDockerImage
registry: true
- resource_type: TestAccDockerContainer
registry: true
- resource_type: TestAccDockerRegistryImage
registry: true
- resource_type: TestAccDockerService
registry: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Setup cookies
run: |
cat /etc/issue
bash scripts/gogetcookie.sh
- name: Used docker version
run: |
docker version
- uses: hashicorp/setup-terraform@v2
with:
terraform_version: ${{ matrix.terraform_version }}
terraform_wrapper: false
- name: Setup acceptance tests
run: make testacc_setup
if: ${{ matrix.registry }}
- name: Run acceptance tests
env:
TF_LOG: INFO
TF_ACC: 1
run: go test -v ./internal/provider -timeout ${{ env.TESTSUITE_TIMEOUT }} -run ${{ matrix.resource_type }}
- name: Cleanup acceptance tests
run: make testacc_cleanup
if: ${{ matrix.registry }}