mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 18:03:37 +08:00
15ac74d233
This fixes the Xenial Dockerfile and perhaps others.
19 lines
487 B
Bash
Executable File
19 lines
487 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script is copied into the root directory of our Docker tests.
|
|
# It is the entry point for running Docker-based tests.
|
|
|
|
cd ~/fish-build
|
|
cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug /fish-source
|
|
|
|
# Spawn a shell if FISH_RUN_SHELL_BEFORE_TESTS is set.
|
|
if test -n "$FISH_RUN_SHELL_BEFORE_TESTS"
|
|
then
|
|
bash -i || exit
|
|
fi
|
|
|
|
ninja && ninja fish_run_tests
|
|
|
|
# Drop the user into a shell if FISH_RUN_SHELL_AFTER_TESTS is set.
|
|
test -n "$FISH_RUN_SHELL_AFTER_TESTS" && exec bash -i
|