/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
.github/actions/setup-rust/action.yml
24 строки
776 B
Benjamin Woodruff
[ci] Background some steps in build_reusable to reduce setup overhead, remove unneeded lld installation (#96195)
29 июл 2026, 08:49
Не верифицирован
29 июл 2026, 08:49
f6d0940
Код
Авторство
О чём код?
name: 'Rust Setup' description: 'Sets up the Rust toolchain for CI' inputs: targets: description: 'Comma-separated list of target triples to install for this toolchain' required: false runs: using: 'composite' steps: - name: 'Setup Rust toolchain' uses: actions-rust-lang/setup-rust-toolchain@2b1f5e9b395427c92ee4e3331786ca3c37afe2d7 # v1.16.0 with: target: ${{ inputs.targets }} # needed to not make it override the defaults rustflags: '' cache: false - name: 'Install cargo-binstall' uses: cargo-bins/cargo-binstall@dc19f1e48450eefe5a29b8da6c6b00a87d730b37 # v1.18.1 - name: 'Add cargo problem matchers' shell: bash run: echo "::add-matcher::${{ github.action_path }}/matchers.json"