From b78e36e005ba1236b10e3a39fe687ec7956b28c5 Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Wed, 24 Jan 2024 19:09:07 -0500 Subject: [PATCH] test: remove the input var --- .github/workflows/ci.yml | 14 +++++++------- .github/workflows/linux.yml | 2 +- .github/workflows/macos.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b3b577d..fa72a03a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,11 +7,11 @@ on: description: 'GitHub runner' required: true type: string - num_threads: - description: 'Number of threads or CPUs' - required: false - type: string - default: '2' + # num_threads: + # description: 'Number of threads or CPUs' + # required: false + # type: string + # default: 2 defaults: run: @@ -39,7 +39,7 @@ jobs: - name: build run: | cmake -S . -B build -DCMAKE_INSTALL_PREFIX=hipo - cmake --build build -j${{ inputs.num_threads }} + cmake --build build -j4 #${{ inputs.num_threads }} cmake --install build tar czvf hipo{.tar.gz,} - run: brew install tree @@ -65,7 +65,7 @@ jobs: if: ${{ inputs.runner != 'macos-latest' }} run: | cmake -S . -B build -DCMAKE_INSTALL_PREFIX=fmt -DCMAKE_POSITION_INDEPENDENT_CODE=ON - cmake --build build -j${{ inputs.num_threads }} + cmake --build build -j4 #${{ inputs.num_threads }} cmake --install build tar czvf fmt{.tar.gz,} - run: tree fmt diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index e422c8d4..3f981eb0 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -15,4 +15,4 @@ jobs: uses: ./.github/workflows/ci.yml with: runner: ubuntu-latest - num_threads: '4' + # num_threads: 4 diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index a2f648b1..67216eef 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -15,4 +15,4 @@ jobs: uses: ./.github/workflows/ci.yml with: runner: macos-latest - num_threads: '3' + # num_threads: 3