diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 8f5463f4..17f313e4 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -30,6 +30,7 @@ jobs: target: x86_64-unknown-linux-gnu args: "--features=magic-module,rules-profiling" rust_flags: "-Awarnings" + experimental: false - build: stable os: ubuntu-latest @@ -37,6 +38,7 @@ jobs: target: x86_64-unknown-linux-gnu args: "--features=magic-module,rules-profiling" rust_flags: "-Awarnings" + experimental: false - build: nightly os: ubuntu-latest @@ -47,6 +49,7 @@ jobs: # Disable rust-lld with -Zlinker-features=-lld # See: https://github.com/dtolnay/linkme/commit/d13709bfd2c1278b4c8b6c846e2017b623923c0c rust_flags: "-Awarnings -Zlinker-features=-lld" + experimental: true - build: macos os: macos-latest @@ -54,6 +57,7 @@ jobs: target: aarch64-apple-darwin args: "--features=rules-profiling" rust_flags: "-Awarnings" + experimental: false - build: win-msvc os: windows-latest @@ -61,6 +65,7 @@ jobs: target: x86_64-win7-windows-msvc args: "--features=rules-profiling" rust_flags: "-Awarnings" + experimental: false # Tests for the `stable-x86_64-pc-windows-gnu` toolchain disabled # due to https://github.com/VirusTotal/yara-x/issues/29 @@ -77,6 +82,7 @@ jobs: target: x86_64-unknown-linux-gnu args: "--package yara-x --no-default-features --features=test_proto2-module,test_proto3-module,string-module,time-module,hash-module,macho-module,magic-module,math-module,lnk-module,elf-module,pe-module,dotnet-module,console-module" rust_flags: "-Awarnings" + experimental: false - build: protoc os: ubuntu-latest @@ -84,6 +90,7 @@ jobs: target: x86_64-unknown-linux-gnu args: "--package yara-x --features=protoc,magic-module" rust_flags: "-Awarnings" + experimental: false - build: 32bits os: ubuntu-latest @@ -91,6 +98,7 @@ jobs: target: i686-unknown-linux-gnu args: "" rust_flags: "-Awarnings" + experimental: false steps: - name: Checkout sources