Skip to content

Commit

Permalink
Comment out long jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
mczyz-antmicro committed Apr 2, 2024
1 parent bea718a commit af5e0eb
Showing 1 changed file with 47 additions and 47 deletions.
94 changes: 47 additions & 47 deletions .github/workflows/xls-modules-dma.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit af5e0eb

Please sign in to comment.