From e1bae1abc9ca0eb24378e0079e301e5b85c45726 Mon Sep 17 00:00:00 2001 From: Juncheng Yang <1a1a11a@users.noreply.github.com> Date: Tue, 28 Oct 2025 18:40:00 -0400 Subject: [PATCH] Remove self-hosted job from build.yml Removed self-hosted job configuration from build workflow. --- .github/workflows/build.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 552e6bf9..0fac10c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,15 +45,3 @@ jobs: export ASAN_OPTIONS="detect_leaks=1:halt_on_error=1:verbosity=1" ctest -C ${{env.BUILD_TYPE}} --output-on-failure --parallel - selfhosted: - if: github.repository == '1a1a11a/libCacheSim' - runs-on: self-hosted - steps: - - uses: actions/checkout@v4 - - name: Configure CMake - run: cmake -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_GLCACHE=on -DENABLE_LRB=on - - name: Build - run: ninja -C ${{github.workspace}}/build - - name: Test - working-directory: ${{github.workspace}}/build - run: ctest -C ${{env.BUILD_TYPE}} --output-on-failure --parallel