Skip to content

Commit 6156e93

Browse files
committed
revert back to hard coded example list in the matrix
1 parent 26c6e31 commit 6156e93

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/examples_matrix.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ on:
77
type: string
88
description: "The name of the workflow used for the concurrency group."
99
required: true
10-
examples:
11-
type: sequence
12-
description: "The examples to run."
13-
required: true
10+
# examples:
11+
# type: sequence
12+
# description: "The examples to run."
13+
# required: true
1414
matrix_linux_command_override:
1515
type: string
1616
description: "The command of the current Swift version linux matrix job to execute."
@@ -54,8 +54,9 @@ jobs:
5454
fail-fast: false
5555
matrix:
5656
# This should be passed as an argument in input. Can we pass arrays as argument ?
57-
# examples : [ "HelloWorld", "APIGateway" ]
58-
examples: ${{ inputs.examples }}
57+
examples : [ "HelloWorld", "APIGateway" ]
58+
# examples: ${{ inputs.examples }}
59+
5960
# We are specifying only the major and minor of the docker images to automatically pick up the latest patch release
6061
swift:
6162
- image: ${{ inputs.matrix_linux_nightly_6_0_container_image }}

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: ./.github/workflows/examples_matrix.yml
3030
with:
3131
# We should pass the list of examples here, but we can't pass an array as argument
32-
examples: [ "HelloWorld", "APIGateway" ]
32+
# examples: [ "HelloWorld", "APIGateway" ]
3333
name: "Integration tests"
3434
matrix_linux_command: "LAMBDA_USE_LOCAL_DEPS=../.. swift build"
3535

0 commit comments

Comments
 (0)