|
1 | 1 | name: Intgeration tests
|
2 | 2 |
|
3 | 3 | on:
|
4 |
| - # schedule: |
5 |
| - # - cron: "0 0 * * *" |
| 4 | + schedule: |
| 5 | + - cron: "0 0 * * *" |
6 | 6 | workflow_dispatch:
|
7 | 7 | push:
|
8 |
| - # tags: |
9 |
| - # - "v*" |
| 8 | + tags: |
| 9 | + - "v*" |
10 | 10 |
|
11 | 11 | jobs:
|
12 | 12 | go-tests:
|
@@ -50,89 +50,89 @@ jobs:
|
50 | 50 | mkdir -p ~/.terraform.d/plugins/threefoldtechdev.com/providers/grid/0.2/linux_amd64/
|
51 | 51 | go build -o terraform-provider-grid
|
52 | 52 | mv terraform-provider-grid ~/.terraform.d/plugins/threefoldtechdev.com/providers/grid/0.2/linux_amd64/
|
53 |
| - # - name: Test virtual machines |
54 |
| - # env: |
55 |
| - # MNEMONICS: ${{ secrets.MNEMONICS }} |
56 |
| - # NETWORK: ${{ matrix.network }} |
57 |
| - # working-directory: integrationtests |
58 |
| - # run: go test -v ./... --tags=integration -run TestVM |
59 |
| - # |
| 53 | + - name: Test virtual machines |
| 54 | + env: |
| 55 | + MNEMONICS: ${{ secrets.MNEMONICS }} |
| 56 | + NETWORK: ${{ matrix.network }} |
| 57 | + working-directory: integrationtests |
| 58 | + run: go test -v ./... --tags=integration -run TestVM |
| 59 | + |
60 | 60 | - name: Test kubernetes
|
61 | 61 | env:
|
62 | 62 | MNEMONICS: ${{ secrets.MNEMONICS }}
|
63 | 63 | NETWORK: ${{ matrix.network }}
|
64 | 64 | working-directory: integrationtests
|
65 | 65 | run: |
|
66 |
| - # go test -v ./... --tags=integration -run TestK8s |
| 66 | + go test -v ./... --tags=integration -run TestK8s |
67 | 67 | go test -v ./... --tags=integration -run TestModuleK8s
|
68 | 68 |
|
69 |
| - # - name: Test Gateways |
70 |
| - # env: |
71 |
| - # MNEMONICS: ${{ secrets.MNEMONICS }} |
72 |
| - # NETWORK: ${{ matrix.network }} |
73 |
| - # working-directory: integrationtests |
74 |
| - # run: go test -v ./... --tags=integration -run TestGatewayDeployments |
75 |
| - # |
76 |
| - # - name: Test private gateways |
77 |
| - # env: |
78 |
| - # MNEMONICS: ${{ secrets.MNEMONICS }} |
79 |
| - # NETWORK: ${{ matrix.network }} |
80 |
| - # working-directory: integrationtests |
81 |
| - # run: go test -v ./... --tags=integration -run TestGatewayPrivate |
82 |
| - # |
83 |
| - # - name: Test wireguard |
84 |
| - # env: |
85 |
| - # MNEMONICS: ${{ secrets.MNEMONICS }} |
86 |
| - # NETWORK: ${{ matrix.network }} |
87 |
| - # working-directory: integrationtests |
88 |
| - # run: go test -v ./... --tags=integration -run TestWireguard |
89 |
| - # |
90 |
| - # - name: Test ZDBs |
91 |
| - # env: |
92 |
| - # MNEMONICS: ${{ secrets.MNEMONICS }} |
93 |
| - # NETWORK: ${{ matrix.network }} |
94 |
| - # working-directory: integrationtests |
95 |
| - # run: go test -v ./... --tags=integration -run TestZdbs |
96 |
| - # |
97 |
| - # - name: Test QSFS |
98 |
| - # env: |
99 |
| - # MNEMONICS: ${{ secrets.MNEMONICS }} |
100 |
| - # NETWORK: ${{ matrix.network }} |
101 |
| - # working-directory: integrationtests |
102 |
| - # run: go test -v ./... --tags=integration -run TestQSFS |
103 |
| - # |
104 |
| - # - name: Test peertube |
105 |
| - # env: |
106 |
| - # MNEMONICS: ${{ secrets.MNEMONICS }} |
107 |
| - # NETWORK: ${{ matrix.network }} |
108 |
| - # working-directory: integrationtests |
109 |
| - # run: go test -v ./... --tags=integration -run TestPeertube |
110 |
| - # |
111 |
| - # - name: Test presearch |
112 |
| - # env: |
113 |
| - # MNEMONICS: ${{ secrets.MNEMONICS }} |
114 |
| - # NETWORK: ${{ matrix.network }} |
115 |
| - # working-directory: integrationtests |
116 |
| - # run: go test -v ./... --tags=integration -run TestPresearch |
117 |
| - # |
118 |
| - # - name: Test taiga |
119 |
| - # env: |
120 |
| - # MNEMONICS: ${{ secrets.MNEMONICS }} |
121 |
| - # NETWORK: ${{ matrix.network }} |
122 |
| - # working-directory: integrationtests |
123 |
| - # run: go test -v ./... --tags=integration -run TestTaiga |
124 |
| - # |
125 |
| - # - name: Test mattermost |
126 |
| - # env: |
127 |
| - # MNEMONICS: ${{ secrets.MNEMONICS }} |
128 |
| - # NETWORK: ${{ matrix.network }} |
129 |
| - # working-directory: integrationtests |
130 |
| - # run: go test -v ./... --tags=integration -run TestMattermost |
131 |
| - # |
132 |
| - # - name: Test nomad |
133 |
| - # env: |
134 |
| - # MNEMONICS: ${{ secrets.MNEMONICS }} |
135 |
| - # NETWORK: ${{ matrix.network }} |
136 |
| - # working-directory: integrationtests |
137 |
| - # run: go test -v ./... --tags=integration -run TestNomad |
138 |
| - # |
| 69 | + - name: Test Gateways |
| 70 | + env: |
| 71 | + MNEMONICS: ${{ secrets.MNEMONICS }} |
| 72 | + NETWORK: ${{ matrix.network }} |
| 73 | + working-directory: integrationtests |
| 74 | + run: go test -v ./... --tags=integration -run TestGatewayDeployments |
| 75 | + |
| 76 | + - name: Test private gateways |
| 77 | + env: |
| 78 | + MNEMONICS: ${{ secrets.MNEMONICS }} |
| 79 | + NETWORK: ${{ matrix.network }} |
| 80 | + working-directory: integrationtests |
| 81 | + run: go test -v ./... --tags=integration -run TestGatewayPrivate |
| 82 | + |
| 83 | + - name: Test wireguard |
| 84 | + env: |
| 85 | + MNEMONICS: ${{ secrets.MNEMONICS }} |
| 86 | + NETWORK: ${{ matrix.network }} |
| 87 | + working-directory: integrationtests |
| 88 | + run: go test -v ./... --tags=integration -run TestWireguard |
| 89 | + |
| 90 | + - name: Test ZDBs |
| 91 | + env: |
| 92 | + MNEMONICS: ${{ secrets.MNEMONICS }} |
| 93 | + NETWORK: ${{ matrix.network }} |
| 94 | + working-directory: integrationtests |
| 95 | + run: go test -v ./... --tags=integration -run TestZdbs |
| 96 | + |
| 97 | + - name: Test QSFS |
| 98 | + env: |
| 99 | + MNEMONICS: ${{ secrets.MNEMONICS }} |
| 100 | + NETWORK: ${{ matrix.network }} |
| 101 | + working-directory: integrationtests |
| 102 | + run: go test -v ./... --tags=integration -run TestQSFS |
| 103 | + |
| 104 | + - name: Test peertube |
| 105 | + env: |
| 106 | + MNEMONICS: ${{ secrets.MNEMONICS }} |
| 107 | + NETWORK: ${{ matrix.network }} |
| 108 | + working-directory: integrationtests |
| 109 | + run: go test -v ./... --tags=integration -run TestPeertube |
| 110 | + |
| 111 | + - name: Test presearch |
| 112 | + env: |
| 113 | + MNEMONICS: ${{ secrets.MNEMONICS }} |
| 114 | + NETWORK: ${{ matrix.network }} |
| 115 | + working-directory: integrationtests |
| 116 | + run: go test -v ./... --tags=integration -run TestPresearch |
| 117 | + |
| 118 | + - name: Test taiga |
| 119 | + env: |
| 120 | + MNEMONICS: ${{ secrets.MNEMONICS }} |
| 121 | + NETWORK: ${{ matrix.network }} |
| 122 | + working-directory: integrationtests |
| 123 | + run: go test -v ./... --tags=integration -run TestTaiga |
| 124 | + |
| 125 | + - name: Test mattermost |
| 126 | + env: |
| 127 | + MNEMONICS: ${{ secrets.MNEMONICS }} |
| 128 | + NETWORK: ${{ matrix.network }} |
| 129 | + working-directory: integrationtests |
| 130 | + run: go test -v ./... --tags=integration -run TestMattermost |
| 131 | + |
| 132 | + - name: Test nomad |
| 133 | + env: |
| 134 | + MNEMONICS: ${{ secrets.MNEMONICS }} |
| 135 | + NETWORK: ${{ matrix.network }} |
| 136 | + working-directory: integrationtests |
| 137 | + run: go test -v ./... --tags=integration -run TestNomad |
| 138 | + |
0 commit comments