mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-29 22:33:40 +08:00
03a9f4a775
Some checks failed
make test / ubuntu (push) Waiting to run
make test / ubuntu-32bit-static-pcre2 (push) Waiting to run
make test / ubuntu-asan (push) Waiting to run
make test / macos (push) Waiting to run
Rust checks / rustfmt (push) Waiting to run
Rust checks / clippy (push) Waiting to run
Lock threads / lock (push) Has been cancelled
As of efe4083dce
(fish.spec/.builds: drop SHOW_INTERACTIVE_LOG,
2022-06-08) this is no longer necessary.
28 lines
570 B
YAML
28 lines
570 B
YAML
image: alpine/edge
|
|
packages:
|
|
- cargo
|
|
- clang17-libclang
|
|
- cmake
|
|
- ninja
|
|
- pcre2-dev
|
|
- py3-pexpect
|
|
- python3
|
|
- rust
|
|
- tmux
|
|
sources:
|
|
- https://github.com/fish-shell/fish-shell
|
|
tasks:
|
|
- build: |
|
|
cd fish-shell
|
|
mkdir build
|
|
cd build
|
|
cmake -G Ninja .. \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_DATADIR=share \
|
|
-DCMAKE_INSTALL_DOCDIR=share/doc/fish \
|
|
-DCMAKE_INSTALL_SYSCONFDIR=/etc
|
|
ninja
|
|
- test: |
|
|
cd fish-shell/build
|
|
ninja test
|