From b1ce49a217f510faa94e08c934acd9712eeebc54 Mon Sep 17 00:00:00 2001 From: Igor Shaposhnik Date: Wed, 16 Jun 2021 13:41:01 +0000 Subject: [PATCH] Remove features from lazy CI task --- .github/workflows/lazy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lazy.yml b/.github/workflows/lazy.yml index 14f6005c91..cdfb1cef80 100644 --- a/.github/workflows/lazy.yml +++ b/.github/workflows/lazy.yml @@ -41,7 +41,7 @@ jobs: - name: Unpack shaders run: cd data && unzip all.zip - name: Build Naga - run: cargo build --release --features spv-in,msl-out --bin naga + run: cargo build --release --bin naga - name: Convert shaders run: for file in data/*.spv ; do echo "Translating" ${file} && target/release/naga --validate 27 ${file} ${file}.metal; done parse-vulkan-tutorial-shaders: @@ -56,7 +56,7 @@ jobs: - name: Download shaders run: git clone https://github.com/SaschaWillems/Vulkan.git - name: Build Naga - run: cargo build --release --features spv-in,msl-out --bin naga + run: cargo build --release --bin naga - name: Convert metal shaders run: | # No needed to stop workflow if we can't validate one file