We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 296e624 commit e838e6aCopy full SHA for e838e6a
.github/workflows/rust.yml
@@ -44,7 +44,9 @@ jobs:
44
run: rustup component add rustfmt clippy
45
46
- name: Download OptiX Headers
47
- run: scripts/download_ci_optix.bash
+ run: |
48
+ chmod +x "${GITHUB_WORKSPACE}/scripts/download_ci_optix.bash"
49
+ scripts/download_ci_optix.bash
50
51
- name: Load Rust Cache
52
uses: Swatinem/rust-cache@v1
scripts/download_ci_optix.bash
@@ -16,4 +16,5 @@ for f in optix.h optix_device.h optix_function_table.h \
16
curl --retry 100 -m 120 --connect-timeout 30 \
17
$OPTIX_URL/include/$f > $DEPS_DIR/optix/include/$f
18
done
19
-export OPTIX_ROOT=${DEPS_DIR}/optix
+OPTIX_ROOT=${DEPS_DIR}/optix
20
+echo "OPTIX_ROOT=${OPTIX_ROOT}" >> $GITHUB_ENV
0 commit comments