mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-21 00:31:15 -03:00
Use test_driver directly instead of CMake in the docker tests. Deal with the read-only "/fish-source" by exporting "CARGO_TARGET_DIR=$HOME/fish-build". It seems correct to also inject this environment variable into the interactive debugging shells. Add some logging to make this override more obvious to the user. Adopt "build_tools/check.sh", because that defines the full set of checks that we (eventually) want to run in CI. In particular, this will also run "tests/checks/po-files-up-to-date.fish" which "cargo b && cargo t && tests/test_driver.py" does not, due to the REQUIRES clause. Since most docker images have some lints/warnings today, disable those for now. Use "docker_run_tests.sh --lint" to override. The default may be changed in future.
57 lines
1.6 KiB
Docker
57 lines
1.6 KiB
Docker
FROM ubuntu:jammy
|
|
LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell
|
|
|
|
ENV LANG=C.UTF-8
|
|
ENV LC_ALL=C.UTF-8
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y install \
|
|
build-essential \
|
|
clang \
|
|
gettext \
|
|
git \
|
|
libpcre2-dev \
|
|
locales \
|
|
python3 \
|
|
python3-pexpect \
|
|
sudo \
|
|
tmux \
|
|
&& locale-gen en_US.UTF-8 \
|
|
&& apt-get clean
|
|
|
|
RUN groupadd -g 1000 fishuser \
|
|
&& useradd -p $(openssl passwd -1 fish) -d /home/fishuser -m -u 1000 -g 1000 fishuser \
|
|
&& adduser fishuser sudo \
|
|
&& mkdir -p /home/fishuser/fish-build \
|
|
&& mkdir /fish-source \
|
|
&& chown -R fishuser:fishuser /home/fishuser /fish-source
|
|
|
|
RUN llvm_version=$(clang --version | awk 'NR==1 { split($NF, version, "."); print version[1] }') \
|
|
&& echo "$llvm_version" >/.llvm-version
|
|
|
|
USER fishuser
|
|
WORKDIR /home/fishuser
|
|
|
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > /tmp/rustup.sh \
|
|
&& sh /tmp/rustup.sh -y --default-toolchain nightly --component rust-src
|
|
|
|
COPY fish_run_tests.sh /
|
|
|
|
ENV \
|
|
RUSTFLAGS=-Zsanitizer=address \
|
|
RUSTDOCFLAGS=-Zsanitizer=address \
|
|
FISH_CHECK_CARGO_ARGS='-Zbuild-std --features=tsan' \
|
|
FISH_CHECK_TARGET_TRIPLE=x86_64-unknown-linux-gnu \
|
|
FISH_CI_SAN=1 \
|
|
FISH_TEST_MAX_CONCURRENCY=4 \
|
|
CC=clang \
|
|
CXX=clang++ \
|
|
ASAN_OPTIONS=check_initialization_order=1:detect_stack_use_after_return=1:detect_leaks=1 \
|
|
LSAN_OPTIONS=verbosity=0:log_threads=0:use_tls=1:print_suppressions=0:suppressions=/fish-source/build_tools/lsan_suppressions.txt
|
|
|
|
ENV FISH_CHECK_LINT=false
|
|
|
|
CMD . ~/.cargo/env \
|
|
&& ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer-$(cat /.llvm-version) \
|
|
&& /fish_run_tests.sh
|