Skip to content

Commit

Permalink
Prune ci
Browse files Browse the repository at this point in the history
  • Loading branch information
randombit committed Oct 28, 2024
1 parent 3792084 commit e1b32d3
Showing 1 changed file with 27 additions and 14 deletions.
41 changes: 27 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ concurrency:

jobs:
windows:
if: false
name: "Windows"
strategy:
fail-fast: false
Expand Down Expand Up @@ -59,6 +60,7 @@ jobs:
run: python3 ./src/scripts/ci_build.py --cc='msvc' --make-tool='ninja' --cpu='${{ matrix.arch }}' --test-results-dir=junit_results ${{ matrix.target }}

linux:
if: false
name: "Linux"
strategy:
fail-fast: false
Expand Down Expand Up @@ -89,6 +91,7 @@ jobs:
run: python3 ./src/scripts/ci_build.py --cc='${{ matrix.compiler }}' --test-results-dir=junit_results ${{ matrix.target }}

macos:
if: false
name: "macOS"
strategy:
fail-fast: false
Expand Down Expand Up @@ -123,6 +126,7 @@ jobs:
run: python3 ./src/scripts/ci_build.py --cc='${{ matrix.compiler }}' --test-results-dir=junit_results ${{ matrix.target }}

clang-tidy:
if: false
name: "Clang Tidy"
runs-on: ubuntu-24.04
steps:
Expand Down Expand Up @@ -153,27 +157,34 @@ jobs:

matrix:
include:
- target: coverage
compiler: gcc
host_os: ubuntu-24.04
# - target: coverage
# compiler: gcc
# host_os: ubuntu-24.04
- target: sanitizer
compiler: clang
host_os: ubuntu-24.04
- target: valgrind
compiler: clang
host_os: ubuntu-24.04
- target: fuzzers
compiler: gcc
host_os: ubuntu-24.04
- target: lint
compiler: gcc
host_os: ubuntu-24.04
- target: format
- target: sanitizer
compiler: msvc
host_os: windows-2022
make_tool: ninja
- target: sanitizer
compiler: gcc
host_os: ubuntu-24.04
- target: limbo
# - target: valgrind
# compiler: clang
# host_os: ubuntu-24.04
- target: fuzzers
compiler: gcc
host_os: ubuntu-24.04
# - target: lint
# compiler: gcc
# host_os: ubuntu-24.04
# - target: format
# compiler: gcc
# host_os: ubuntu-24.04
# - target: limbo
# compiler: gcc
# host_os: ubuntu-24.04

runs-on: ${{ matrix.host_os }}

Expand Down Expand Up @@ -203,6 +214,7 @@ jobs:
run: python3 ./source/src/scripts/ci_build.py --root-dir=${{ github.workspace }}/source --build-dir=${{ github.workspace }}/build --boringssl-dir=${{ github.workspace }}/boringssl --cc='${{ matrix.compiler }}' --make-tool='${{ matrix.make_tool }}' --test-results-dir=junit_results ${{ matrix.target }}

specials:
if: false
name: "Special"
strategy:
fail-fast: false
Expand Down Expand Up @@ -242,6 +254,7 @@ jobs:
run: python3 ./source/src/scripts/ci_build.py --root-dir=${{ github.workspace }}/source --build-dir=${{ github.workspace }}/build --boringssl-dir=${{ github.workspace }}/boringssl --cc='${{ matrix.compiler }}' --test-results-dir=junit_results ${{ matrix.target }}

x-compile:
if: false
name: "Cross"
strategy:
fail-fast: false
Expand Down

0 comments on commit e1b32d3

Please sign in to comment.