From ad4991f42895868d988668749d839ced1914f276 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 14 Sep 2023 17:11:06 -0700 Subject: [PATCH] CI: temporarily disable while testing this branch --- .github/workflows/ci.yaml | 78 --------------------------------------- 1 file changed, 78 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1285eb5cc37e23c802c4fbdb2a856f6e335e107b..27ae6a666cba11c45a8fe73709bda7d7d212b53b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,30 +10,6 @@ concurrency: group: ${{ github.head_ref || github.run_id }}-${{ github.actor }} cancel-in-progress: true jobs: - x86_64-linux-debug: - timeout-minutes: 420 - runs-on: [self-hosted, Linux, x86_64] - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Build and Test - run: sh ci/x86_64-linux-debug.sh - x86_64-linux-release: - timeout-minutes: 420 - runs-on: [self-hosted, Linux, x86_64] - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Build and Test - run: sh ci/x86_64-linux-release.sh - aarch64-linux-debug: - timeout-minutes: 420 - runs-on: [self-hosted, Linux, aarch64] - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Build and Test - run: sh ci/aarch64-linux-debug.sh aarch64-linux-release: runs-on: [self-hosted, Linux, aarch64] steps: @@ -41,57 +17,3 @@ jobs: uses: actions/checkout@v3 - name: Build and Test run: sh ci/aarch64-linux-release.sh - x86_64-macos-release: - runs-on: "macos-11" - env: - ARCH: "x86_64" - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Build and Test - run: ci/x86_64-macos-release.sh - aarch64-macos-debug: - runs-on: [self-hosted, macOS, aarch64] - env: - ARCH: "aarch64" - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Build and Test - run: ci/aarch64-macos-debug.sh - aarch64-macos-release: - runs-on: [self-hosted, macOS, aarch64] - env: - ARCH: "aarch64" - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Build and Test - run: ci/aarch64-macos-release.sh - x86_64-windows-debug: - runs-on: windows-latest - env: - ARCH: "x86_64" - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Build and Test - run: ci/x86_64-windows-debug.ps1 - x86_64-windows-release: - runs-on: windows-latest - env: - ARCH: "x86_64" - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Build and Test - run: ci/x86_64-windows-release.ps1 - aarch64-windows: - runs-on: [self-hosted, Windows, aarch64] - env: - ARCH: "aarch64" - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Build and Test - run: ci/aarch64-windows.ps1 -- 2.54.0