Skip to content

Commit

Permalink
fixup! refactor: CI pipeline to build CPP SDKs
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaKasar committed Oct 15, 2024
1 parent 652128b commit c1e19c6
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/cxx-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,11 @@ jobs:
uses: actions/checkout@v2

- name: Download Core SDK
run: |
rm -rf src/sdks/core
actions/download-artifact@v3 --name core --path /__w/firebolt-apis/src/sdks/core
run: rm -rf src/sdks/core
uses: actions/download-artifact@v3
with:
name: core
path: /__w/firebolt-apis/src/sdks/core

- name: Download Thunder
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -177,10 +179,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Download Discovery SDK
run: |
rm -rf src/sdks/discovery
actions/download-artifact@v3 --name discovery --path /__w/firebolt-apis/src/sdks/discovery
- name: Download Discovery SDK
run: rm -rf src/sdks/discovery
uses: actions/download-artifact@v3
with:
name: core
path: /__w/firebolt-apis/src/sdks/core

- name: Download Thunder
uses: actions/download-artifact@v3
Expand Down

0 comments on commit c1e19c6

Please sign in to comment.