File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -192,14 +192,18 @@ jobs:
192192 - name : Checkout Source
193193 uses : actions/checkout@v4
194194
195- - name : Install builder
196- uses : actions/download-artifact@v4
195+ - name : Get release tag
196+ uses : ./.github/actions/release-tag
197+ id : tag
197198 with :
198- name : builder
199- path : .
199+ output : tag
200200
201201 - name : Build aws-c-common
202- run : python3 builder.pyz build --project aws-c-common --compiler=${{ matrix.compiler }} run_tests=false
202+ run : |
203+ aws ecr get-login-password --region us-east-1 | docker login ${{ secrets.AWS_ECR_REPO }} -u AWS --password-stdin
204+ export DOCKER_IMAGE=${{ secrets.AWS_ECR_REPO }}/aws-crt-ubuntu-20-x64:${{ steps.tag.outputs.release_tag }}
205+ docker pull $DOCKER_IMAGE
206+ docker run --env GITHUB_REF --entrypoint build --project aws-c-common --compiler=${{ matrix.compiler }} run_tests=false
203207
204208 # Make sure linux compilers + stdlibs are installing properly
205209 std-compat :
You can’t perform that action at this time.
0 commit comments