-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
595bdf4
commit 87352d4
Showing
1 changed file
with
4 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
env: | ||
PACKAGE_NAME: chameleonrt-ubuntu2204-x86_64 | ||
|
||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -42,10 +42,10 @@ jobs: | |
- name: Setup CUDA | ||
run: | | ||
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.0-1_all.deb | ||
sudo dpkg -i cuda-keyring_1.0-1_all.deb | ||
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.1-1_all.deb | ||
sudo dpkg -i cuda-keyring_1.1-1_all.deb | ||
sudo apt-get update | ||
sudo apt-get -y install cuda | ||
sudo apt-get -y install cuda-toolkit | ||
# Provides VulkanSDK for Windows and OptiX for Windows/Linux | ||
- name: Fetch RT CI Dependencies | ||
|
@@ -225,13 +225,6 @@ jobs: | |
wget https://github.com/oneapi-src/oneTBB/releases/download/v${TBB_VERSION}/oneapi-tbb-${TBB_VERSION}-mac.tgz | ||
tar -xf oneapi-tbb-${TBB_VERSION}-mac.tgz | ||
# Clean up python and other stuff we don't need so the right python can be installed with brew | ||
- name: Cleanup Python | ||
run: | | ||
brew uninstall azure-cli | ||
brew uninstall --ignore-dependencies python | ||
brew install --force --overwrite [email protected] | ||
- name: Setup ISPC | ||
run: brew install ispc | ||
|
||
|