From af5e0ebf12c886b8c4f3e3b6721cac6a1765e812 Mon Sep 17 00:00:00 2001 From: Michal Czyz Date: Tue, 2 Apr 2024 20:11:16 +0200 Subject: [PATCH] Comment out long jobs --- .github/workflows/xls-modules-dma.yml | 94 +++++++++++++-------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/.github/workflows/xls-modules-dma.yml b/.github/workflows/xls-modules-dma.yml index f341586896..943236a5c4 100644 --- a/.github/workflows/xls-modules-dma.yml +++ b/.github/workflows/xls-modules-dma.yml @@ -34,53 +34,53 @@ env: jobs: # build: - name: BUILD - runs-on: ubuntu-22.04 - timeout-minutes: 600 - steps: - - uses: actions/checkout@v4 - - - name: Bazel Cache - uses: actions/cache@v4 - with: - path: "~/.cache/bazel" - key: ${{ env.CACHE_KEY }} - restore-keys: ${{ env.CACHE_RESTORE_KEY }} - - - name: Increase build space - run: | - echo "Before cleanup" - df -H - sudo rm -rf /usr/share/dotnet/* - sudo rm -rf /usr/local/lib/android/* - sudo rm -rf /usr/share/dotnet - sudo rm -rf /opt/ghc - sudo rm -rf "/usr/local/share/boost" - sudo rm -rf "$AGENT_TOOLSDIRECTORY" - echo "After cleanup" - df -H - - - name: Install dependencies via apt - run: | - sudo apt-get update - sudo apt-get -qy --no-install-recommends install \ - build-essential \ - gfortran \ - libblas-dev \ - liblapack-dev \ - libtinfo5 \ - python-is-python3 \ - python3-dev \ - python3-distutils - - - name: Bazel Build Tools (opt) - run: | - bazel build -c opt --test_output=errors -- \ - //xls/dslx:interpreter_main \ - //xls/dslx/ir_convert:ir_converter_main \ - //xls/tools:opt_main \ - //xls/tools:codegen_main \ - //xls/dslx:dslx_fmt + # name: BUILD + # runs-on: ubuntu-22.04 + # timeout-minutes: 600 + # steps: + # - uses: actions/checkout@v4 + + # - name: Bazel Cache + # uses: actions/cache@v4 + # with: + # path: "~/.cache/bazel" + # key: ${{ env.CACHE_KEY }} + # restore-keys: ${{ env.CACHE_RESTORE_KEY }} + + # - name: Increase build space + # run: | + # echo "Before cleanup" + # df -H + # sudo rm -rf /usr/share/dotnet/* + # sudo rm -rf /usr/local/lib/android/* + # sudo rm -rf /usr/share/dotnet + # sudo rm -rf /opt/ghc + # sudo rm -rf "/usr/local/share/boost" + # sudo rm -rf "$AGENT_TOOLSDIRECTORY" + # echo "After cleanup" + # df -H + + # - name: Install dependencies via apt + # run: | + # sudo apt-get update + # sudo apt-get -qy --no-install-recommends install \ + # build-essential \ + # gfortran \ + # libblas-dev \ + # liblapack-dev \ + # libtinfo5 \ + # python-is-python3 \ + # python3-dev \ + # python3-distutils + + # - name: Bazel Build Tools (opt) + # run: | + # bazel build -c opt --test_output=errors -- \ + # //xls/dslx:interpreter_main \ + # //xls/dslx/ir_convert:ir_converter_main \ + # //xls/tools:opt_main \ + # //xls/tools:codegen_main \ + # //xls/dslx:dslx_fmt # test: # needs: build