Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 5 additions & 13 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,12 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- name: Set Windows environment variables
if: matrix.os == 'windows-latest'
shell: bash
run: |
echo "VULKAN_VERSION=1.3.290.0" >> "$GITHUB_ENV"
echo "VULKAN_SDK=C:/VulkanSDK/1.3.290.0" >> "$GITHUB_ENV"
- name: Install dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt update && sudo apt-get -y install libasound2-dev libvulkan-dev libfontconfig-dev libshaderc-dev
Comment thread
Ralith marked this conversation as resolved.
- name: Install Vulkan SDK
if: matrix.os == 'windows-latest'
run: |
Invoke-WebRequest -Uri "https://sdk.lunarg.com/sdk/download/${{ env.VULKAN_VERSION }}/windows/VulkanSDK-${{ env.VULKAN_VERSION }}-Installer.exe" -OutFile vulkan.exe
./vulkan.exe --accept-licenses --default-answer --confirm-command install
uses: jakoch/install-vulkan-sdk-action@v1
with:
vulkan_version: 1.3.290.0
install_runtime: true
install_lavapipe: true
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo build --workspace --all-targets --locked
Expand Down
1 change: 0 additions & 1 deletion client/src/graphics/tests.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use super::Base;

#[test]
#[ignore]
fn init_base() {
let _guard = common::tracing_guard();
Base::headless();
Expand Down
1 change: 0 additions & 1 deletion client/src/graphics/voxels/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ struct Surface {
}

#[test]
#[ignore]
fn surface_extraction() {
assert_eq!(mem::size_of::<Surface>(), 8);

Expand Down
Loading