Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/clang-sys/.github/workflows/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 1 kB image not shown  

Quelle  ssh.yml   Sprache: unbekannt

 
Spracherkennung für: .yml vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

name: SSH

on:
  workflow_dispatch:
    inputs:
      os:
        description: "Operating System"
        required: true
        default: "ubuntu-latest"

jobs:
  ssh:
    name: SSH
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [macos-latest, ubuntu-latest, windows-latest]
        clang: [["13.0", "clang_13_0"]]
        rust: ["1.51.0"]
    steps:
      - name: Checkout Repository
        uses: actions/checkout@v2
        if: github.event.inputs.os == matrix.os
      # LLVM and Clang
      - name: Install LLVM and Clang
        uses: KyleMayes/install-llvm-action@v1
        if: github.event.inputs.os == matrix.os
        with:
          version: ${{ matrix.clang[0] }}
          directory: ${{ runner.temp }}/llvm-${{ matrix.clang[0] }}
      # Rust
      - name: Install Rust
        uses: actions-rs/toolchain@v1
        if: github.event.inputs.os == matrix.os
        with:
          toolchain: ${{ matrix.rust }}
      # SSH
      - name: Enable SSH
        uses: mxschmitt/action-tmate@v3
        if: github.event.inputs.os == matrix.os

[Dauer der Verarbeitung: 0.29 Sekunden]