Skip to content

Commit

Permalink
Revert "use install_sdks"
Browse files Browse the repository at this point in the history
This reverts commit 635117e.
  • Loading branch information
blampe committed Jan 4, 2025
1 parent 635117e commit a0b5d12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Restore makefile progress
run: make --touch provider schema build_#{{ $language }}#
- name: Install dependencies
run: make install_sdks
run: make install_#{{ $language }}#_sdk
#{{- end }}#
#{{- end }}#
- name: Update path
Expand Down
10 changes: 5 additions & 5 deletions provider-ci/test-providers/aws/.github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,39 +72,39 @@ jobs:
- name: Restore makefile progress
run: make --touch provider schema build_nodejs
- name: Install dependencies
run: make install_sdks
run: make install_nodejs_sdk
- name: Download python SDK
uses: ./.github/actions/download-sdk
with:
language: python
- name: Restore makefile progress
run: make --touch provider schema build_python
- name: Install dependencies
run: make install_sdks
run: make install_python_sdk
- name: Download dotnet SDK
uses: ./.github/actions/download-sdk
with:
language: dotnet
- name: Restore makefile progress
run: make --touch provider schema build_dotnet
- name: Install dependencies
run: make install_sdks
run: make install_dotnet_sdk
- name: Download go SDK
uses: ./.github/actions/download-sdk
with:
language: go
- name: Restore makefile progress
run: make --touch provider schema build_go
- name: Install dependencies
run: make install_sdks
run: make install_go_sdk
- name: Download java SDK
uses: ./.github/actions/download-sdk
with:
language: java
- name: Restore makefile progress
run: make --touch provider schema build_java
- name: Install dependencies
run: make install_sdks
run: make install_java_sdk
- name: Update path
run: echo "${{ github.workspace }}/bin" >> "$GITHUB_PATH"
- name: Install Python deps
Expand Down

0 comments on commit a0b5d12

Please sign in to comment.