Skip to content

Commit 2cc0793

Browse files
Merge pull request google#1865 from xlsynth:cdleary/2025-01-16-fix-docker-build
PiperOrigin-RevId: 716837915
2 parents 583de45 + b16872e commit 2cc0793

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
restore-keys: bazel-cache-nightly-${{ runner.os }}-
3131

3232
- name: Install dependencies via apt
33-
run: sudo apt-get install python3-distutils python3-dev python-is-python3 libtinfo5 build-essential liblapack-dev libblas-dev gfortran
33+
run: sudo apt-get install python3-dev python-is-python3 build-essential liblapack-dev libblas-dev gfortran
3434

3535
- name: Bazel Build Tools (opt)
3636
run: |

Dockerfile-ubuntu-22.04

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN chmod +x bazelisk-linux-amd64 && mv bazelisk-linux-amd64 /usr/bin/bazel
2323

2424

2525
# Install dependencies
26-
RUN apt-get -y install python3-distutils python3-dev python-is-python3 libtinfo5 build-essential libxml2-dev liblapack-dev libblas-dev gfortran
26+
RUN apt-get -y install python3-distutils python3-dev python-is-python3 libtinfo5 build-essential libxml2-dev liblapack-dev libblas-dev gfortran zip
2727

2828
# Install development tools
2929
RUN apt-get install -y git vim
@@ -36,6 +36,6 @@ ADD --chown=xls-developer . /home/xls-developer/xls/
3636
WORKDIR /home/xls-developer/xls/
3737

3838

39-
# Test everything (opt), exclude xlscc for now due to increased build time when
40-
# we add Clang.
41-
RUN bazel test -c opt -- //xls/... -//xls/contrib/xlscc/...
39+
# Test everything (opt), exclude contrib (including xlscc) for now due to
40+
# increased build time when we add Clang.
41+
RUN bazel test -c opt --test_summary=terse --test_verbose_timeout_warnings -- //xls/... -//xls/contrib/... -//xls/dev_tools/...

0 commit comments

Comments
 (0)