8
8
jobs :
9
9
# # Gradle Build (Connectors Base)
10
10
# In case of self-hosted EC2 errors, remove this block.
11
- start-connectors-build-runner :
11
+ start-connectors-base- build-runner :
12
12
name : " Connectors Base: Start Build EC2 Runner"
13
13
runs-on : ubuntu-latest
14
14
outputs :
@@ -31,10 +31,10 @@ jobs:
31
31
ec2-instance-type : c5.2xlarge
32
32
subnet-id : subnet-0469a9e68a379c1d3
33
33
security-group-id : sg-0793f3c9413f21970
34
- build-connector :
34
+ build-connectors-base :
35
35
# In case of self-hosted EC2 errors, removed the `needs` line and switch back to running on ubuntu-latest.
36
- needs : start-connectors-build-runner # required to start the main job when the runner is ready
37
- runs-on : ${{ needs.start-connectors-build-runner.outputs.label }} # run the job on the newly created runner
36
+ needs : start-connectors-base- build-runner # required to start the main job when the runner is ready
37
+ runs-on : ${{ needs.start-connectors-base- build-runner.outputs.label }} # run the job on the newly created runner
38
38
name : " Connectors Base: Build"
39
39
steps :
40
40
- name : Checkout Airbyte
@@ -122,11 +122,11 @@ jobs:
122
122
SLACK_TITLE : " Build Success"
123
123
SLACK_FOOTER : " "
124
124
# In case of self-hosted EC2 errors, remove this block.
125
- stop-connectors-build-runner :
125
+ stop-connectors-base- build-runner :
126
126
name : " Connectors Base: Stop Build EC2 Runner"
127
127
needs :
128
- - start-connectors-build-runner # required to get output from the start-runner job
129
- - build # required to wait when the main job is done
128
+ - start-connectors-base- build-runner # required to get output from the start-runner job
129
+ - build-connectors-base # required to wait when the main job is done
130
130
runs-on : ubuntu-latest
131
131
if : ${{ always() }} # required to stop the runner even if the error happened in the previous jobs
132
132
steps :
@@ -141,8 +141,8 @@ jobs:
141
141
with :
142
142
mode : stop
143
143
github-token : ${{ secrets.SELF_RUNNER_GITHUB_ACCESS_TOKEN }}
144
- label : ${{ needs.start-connectors-build-runner.outputs.label }}
145
- ec2-instance-id : ${{ needs.start-connectors-build-runner.outputs.ec2-instance-id }}
144
+ label : ${{ needs.start-connectors-base- build-runner.outputs.label }}
145
+ ec2-instance-id : ${{ needs.start-connectors-base- build-runner.outputs.ec2-instance-id }}
146
146
147
147
# # Gradle Build (Platform)
148
148
# In case of self-hosted EC2 errors, remove this block.
@@ -295,7 +295,7 @@ jobs:
295
295
name : " Platform: Stop Build EC2 Runner"
296
296
needs :
297
297
- start-platform-build-runner # required to get output from the start-runner job
298
- - build # required to wait when the main job is done
298
+ - platform- build # required to wait when the main job is done
299
299
runs-on : ubuntu-latest
300
300
if : ${{ always() }} # required to stop the runner even if the error happened in the previous jobs
301
301
steps :
0 commit comments