From 0bbbc9536ec32f93eb1e42134b518e5a2db1bb8e Mon Sep 17 00:00:00 2001 From: Andrei Malashkin Date: Thu, 12 Dec 2024 12:52:54 +0100 Subject: [PATCH] remove cores limitation --- .../workflows/clang-sanitizers-linux-nix-check.yml | 4 ---- .github/workflows/gcc-linux-nix-check.yml | 11 ----------- 2 files changed, 15 deletions(-) diff --git a/.github/workflows/clang-sanitizers-linux-nix-check.yml b/.github/workflows/clang-sanitizers-linux-nix-check.yml index 6144548dbc..ef72749551 100644 --- a/.github/workflows/clang-sanitizers-linux-nix-check.yml +++ b/.github/workflows/clang-sanitizers-linux-nix-check.yml @@ -23,10 +23,6 @@ jobs: nix build -L .?#checks.x86_64-linux.all-clang-sanitize mkdir results cp result/test-logs/*_test.xml results/ - continue-on-error: true - env: - NIX_CONFIG: | - cores = 4 - name: Publish Test Results uses: EnricoMi/publish-unit-test-result-action/linux@v2 diff --git a/.github/workflows/gcc-linux-nix-check.yml b/.github/workflows/gcc-linux-nix-check.yml index 99dfa285e0..60ee30a868 100644 --- a/.github/workflows/gcc-linux-nix-check.yml +++ b/.github/workflows/gcc-linux-nix-check.yml @@ -17,22 +17,11 @@ jobs: with: fetch-depth: 0 - - name: Run checks for crypto3 - run: | - nix build -L .?#checks.x86_64-linux.crypto3-gcc - env: - NIX_CONFIG: | - cores = 4 - - name: Run all checks - # This includes cached crypto3 check from previous step. We don't limit cores in this part run: | nix build -L .?#checks.x86_64-linux.all-gcc mkdir results cp result/test-logs/*_test.xml results/ - env: - NIX_CONFIG: | - cores = 16 - name: Publish Test Results uses: EnricoMi/publish-unit-test-result-action/linux@v2