|
11 | 11 | description: 'Git ref for checking out the community repo. Default is main' |
12 | 12 | required: false |
13 | 13 | default: '' |
14 | | - codeGeneratorRepo: |
15 | | - description: 'Git repository for checking out the code-generator repo' |
16 | | - required: false |
17 | | - default: 'aws-controllers-k8s/code-generator' |
18 | | - codeGeneratorRef: |
19 | | - description: 'Git ref for checking out the code-generator repo. Default is main' |
20 | | - required: false |
21 | | - default: '' |
22 | 14 | testInfraRepo: |
23 | 15 | description: 'Git repository for checking out the test-infra repo' |
24 | 16 | required: false |
@@ -56,27 +48,13 @@ jobs: |
56 | 48 | ref: ${{ github.event.inputs.communityRef }} |
57 | 49 | path: './src/github.com/aws-controllers-k8s/community' |
58 | 50 |
|
59 | | - - name: checkout code-generator |
60 | | - uses: actions/checkout@v2 |
61 | | - with: |
62 | | - repository: ${{ github.event.inputs.codeGeneratorRepo }} |
63 | | - ref: ${{ github.event.inputs.codeGeneratorRef }} |
64 | | - path: './src/github.com/aws-controllers-k8s/code-generator' |
65 | | - |
66 | 51 | - name: checkout test-infra |
67 | 52 | uses: actions/checkout@v2 |
68 | 53 | with: |
69 | 54 | repository: ${{ github.event.inputs.testInfraRepo }} |
70 | 55 | ref: ${{ github.event.inputs.testInfraRef }} |
71 | 56 | path: './src/github.com/aws-controllers-k8s/test-infra' |
72 | 57 |
|
73 | | - - name: build controller |
74 | | - working-directory: './src/github.com/aws-controllers-k8s/community' |
75 | | - run: ./scripts/build-controller.sh $SERVICE |
76 | | - env: |
77 | | - SERVICE: ${{ matrix.service }} |
78 | | - GOPATH: ${{ github.workspace }} |
79 | | - |
80 | 58 | - name: execute e2e tests |
81 | 59 | working-directory: './src/github.com/aws-controllers-k8s/community' |
82 | 60 | run: | |
|
0 commit comments