Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
aviadingo committed Jan 5, 2025
1 parent 28df5f4 commit 683c5df
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/cpp-golang-rust-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,16 @@ jobs:
fi
fi
- name: Get OS version
id: os-version
run: |
echo "OS_VERSION=$(lsb_release -d | awk -F'\t' '{print $2}' | tr -d '[:space:]')" >> $GITHUB_OUTPUT
- name: Download ICICLE lib artifacts
uses: actions/download-artifact@v4
continue-on-error: true
if: steps.exists-flag.outputs.EXIST_FLAG =='false'
with:
name: icicle-builds-curve-${{ matrix.curve.name }}-${{ steps.extract-cuda-sha.outputs.cuda-backend-sha }}
name: icicle-builds-curve-${{ matrix.curve.name }}-${{ steps.extract-cuda-sha.outputs.cuda-backend-sha }}-${{ steps.os-version.outputs.OS_VERSION }}
path: ${{steps.exists-flag.outputs.INSTALL_PATH}}
merge-multiple: true

Expand Down Expand Up @@ -196,12 +200,14 @@ jobs:
- name: Upload ICICLE lib artifacts
uses: actions/upload-artifact@v4
if: steps.cuda-flag.outputs.CUDA_FLAG == '-DCUDA_BACKEND=local'
# if: steps.cuda-flag.outputs.CUDA_FLAG == '-DCUDA_BACKEND=local'
with:
name: icicle-builds-curve-${{ matrix.curve.name }}-${{ steps.extract-cuda-sha.outputs.cuda-backend-sha }}
name: icicle-builds-curve-${{ matrix.curve.name }}-${{ steps.extract-cuda-sha.outputs.cuda-backend-sha }}-${{ steps.os-version.outputs.OS_VERSION }}
path: |
${{ steps.cuda-flag.outputs.INSTALL_PATH }}/*
$(realpath ${{ steps.cuda-flag.outputs.INSTALL_PATH }})/*
retention-days: 1
overwrite: true


- name: Run RUST Curve Tests
working-directory: ./wrappers/rust/icicle-curves
Expand Down

0 comments on commit 683c5df

Please sign in to comment.