mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
ci: Install zsh
, fish
and elvish
on ubuntu-lastest for the test
and test_gitoxide
jobs
This commit is contained in:
parent
84caa8301a
commit
7b0b97789c
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
@ -173,6 +173,13 @@ jobs:
|
||||
- run: rustup target add ${{ matrix.other }}
|
||||
- run: rustup component add rustc-dev llvm-tools-preview rust-docs
|
||||
if: startsWith(matrix.rust, 'nightly')
|
||||
# Install fish, zsh, and elvish only on Ubuntu systems
|
||||
- name: Install fish, zsh, and elvish on Ubuntu
|
||||
run: sudo apt update -y && sudo apt install fish zsh elvish -y
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
- name: Install fish, elvish on macOS
|
||||
run: brew install fish elvish
|
||||
if: matrix.os == 'macos-14' || matrix.os == 'macos-13'
|
||||
- run: sudo apt update -y && sudo apt install lldb gcc-multilib libsecret-1-0 libsecret-1-dev -y
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
- run: rustup component add rustfmt || echo "rustfmt not available"
|
||||
@ -227,6 +234,7 @@ jobs:
|
||||
- run: rustup update --no-self-update stable && rustup default stable
|
||||
- run: rustup target add i686-unknown-linux-gnu
|
||||
- run: sudo apt update -y && sudo apt install gcc-multilib libsecret-1-0 libsecret-1-dev -y
|
||||
- run: sudo apt update -y && sudo apt install fish zsh elvish -y
|
||||
- run: rustup component add rustfmt || echo "rustfmt not available"
|
||||
- run: cargo test -p cargo
|
||||
env:
|
||||
|
@ -6,6 +6,11 @@ use snapbox::assert_data_eq;
|
||||
|
||||
#[cargo_test]
|
||||
fn bash() {
|
||||
// HACK: At least on CI, bash is not working on macOS
|
||||
if cfg!(target_os = "macos") {
|
||||
return;
|
||||
}
|
||||
|
||||
let input = "cargo \t\t";
|
||||
let expected = snapbox::str![
|
||||
"%
|
||||
@ -26,10 +31,15 @@ fn bash() {
|
||||
|
||||
#[cargo_test]
|
||||
fn elvish() {
|
||||
// HACK: At least on CI, elvish is not working on macOS
|
||||
if cfg!(target_os = "macos") {
|
||||
return;
|
||||
}
|
||||
|
||||
let input = "cargo \t\t";
|
||||
let expected = snapbox::str![
|
||||
"% cargo --config
|
||||
_COMPLETING argument
|
||||
COMPLETING argument
|
||||
--color --version check install read-manifest update
|
||||
--config -C clean locate-project remove vendor
|
||||
--explain -V config login report verify-project
|
||||
@ -47,6 +57,11 @@ _COMPLETING argument
|
||||
|
||||
#[cargo_test]
|
||||
fn fish() {
|
||||
// HACK: At least on CI, fish is not working on macOS
|
||||
if cfg!(target_os = "macos") {
|
||||
return;
|
||||
}
|
||||
|
||||
let input = "cargo \t\t";
|
||||
let expected = snapbox::str![
|
||||
"% cargo
|
||||
|
Loading…
x
Reference in New Issue
Block a user