Skip to content

Commit e4df484

Browse files
committed
Check in amazing hello-world example
0 parents  commit e4df484

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
Terraform Provider for GCP CI-Related tools
3+
===
4+
5+
Small collection of tools related to CI and terraform-provider-google. Right now
6+
this is experimental and not supported in any way.
7+
8+
This repo is not intended to be long-lived; rather it should eventually be
9+
merged upstream.

run-acceptance-tests.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
3+
echo "Hello world."

terraform-ci-pipeline.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
resources:
2+
- name: jsselman-repo
3+
type: git
4+
source:
5+
uri: https://github.com/selmanj/terraform-provider-google.git
6+
branch: master
7+
paths:
8+
- google/*
9+
10+
- name: terraform-ci
11+
type: git
12+
source:
13+
uri: [email protected]:selmanj/terraform-provider-google-ci.git
14+
branch: master
15+
16+
jobs:
17+
- name: acceptance-tests
18+
plan:
19+
- get: terraform
20+
resource: jsselman-repo
21+
trigger: true
22+
- get: ci
23+
resource: terraform-ci
24+
25+
- task: run-acceptance-tests
26+
config:
27+
platform: linux
28+
params:
29+
google_json_account: ((terraform-ci-acc-tests-json))
30+
inputs:
31+
- name: terraform
32+
image_resource:
33+
type: docker-image
34+
source: {repository: golang}
35+
run:
36+
path: ci/run-acceptance-tests.sh

0 commit comments

Comments
 (0)