Skip to content

Commit

Permalink
fixup! feat(core): CI pipeline to build and test CPP SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaKasar committed Oct 11, 2024
1 parent 36d8551 commit b295479
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion .github/workflows/cxx-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,28 @@ on:
env:
HUSKY: 0
jobs:
thunder:
name: Build Thunder Libraries
runs-on: ubuntu-latest
container:
image: kevinshahfws/node-c:3.0
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Clone and Install Thunder
id: install_thunder
run: |
.github/workflows/utils.sh cloneAndInstallThunder
pwd
ls /home
- name: Upload the library artifact
uses: actions/upload-artifact@v3
with:
name: thunder
path: /__w/firebolt-apis/install/

release:
name: Release
runs-on: ubuntu-latest
Expand Down Expand Up @@ -43,7 +65,13 @@ jobs:
- name: Build Artifacts
run: |
npm run dist
- name: Upload the core sdk artifact
uses: actions/upload-artifact@v3
with:
name: core-sdk
path: /__w/firebolt-apis/firebolt-apis/src/sdks/core

# - name: Install Gcovr
# run: |
# apt remove --purge gcovr -y
Expand Down

0 comments on commit b295479

Please sign in to comment.