forked from GoogleCloudPlatform/functions-framework-go
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (41 loc) · 2 KB
/
buildpack-integration-test.yml
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
# Validates Functions Framework with GCF buildpacks.
name: Buildpack Integration Test
on:
push:
branches:
- master
workflow_dispatch:
jobs:
go113-buildpack-test:
uses: GoogleCloudPlatform/functions-framework-conformance/.github/workflows/buildpack-integration-test.yml@v1.4.1
with:
http-builder-source: 'testdata/conformance/function'
http-builder-target: 'declarativeHTTP'
cloudevent-builder-source: 'testdata/conformance/function'
cloudevent-builder-target: 'declarativeCloudEvent'
prerun: 'testdata/conformance/prerun.sh ${{ github.sha }} testdata/conformance/function'
builder-runtime: 'go113'
# Latest uploaded tag from us.gcr.io/fn-img/us/buildpacks/go113/builder
builder-tag: 'go113_20220320_1_13_15_RC00'
go116-buildpack-test:
uses: GoogleCloudPlatform/functions-framework-conformance/.github/workflows/buildpack-integration-test.yml@v1.4.1
with:
http-builder-source: 'testdata/conformance/function'
http-builder-target: 'declarativeHTTP'
cloudevent-builder-source: 'testdata/conformance/function'
cloudevent-builder-target: 'declarativeCloudEvent'
prerun: 'testdata/conformance/prerun.sh ${{ github.sha }} testdata/conformance/function'
builder-runtime: 'go116'
# Latest uploaded tag from us.gcr.io/fn-img/us/buildpacks/go116/builder
builder-tag: 'go116_20220320_1_16_13_RC00'
non-declarative-buildpack-test:
uses: GoogleCloudPlatform/functions-framework-conformance/.github/workflows/buildpack-integration-test.yml@v1.4.1
with:
http-builder-source: 'testdata/conformance/nondeclarative'
http-builder-target: 'HTTP'
cloudevent-builder-source: 'testdata/conformance/nondeclarative'
cloudevent-builder-target: 'CloudEvent'
prerun: 'testdata/conformance/prerun.sh ${{ github.sha }} testdata/conformance/nondeclarative'
builder-runtime: 'go116'
# Latest uploaded tag from us.gcr.io/fn-img/us/buildpacks/go116/builder
builder-tag: 'go116_20220320_1_16_13_RC00'