Home
last modified time | relevance | path

Searched +full:fetch +full:- +full:depth (Results 1 – 12 of 12) sorted by relevance

/cloud-hypervisor/scripts/
H A Dtest-util.sh2 set -x
23 if [ -d "$SRC_DIR" ]; then
25 git fetch
26 SRC_LOCAL_COMMIT=$(git rev-parse HEAD)
27 if [ -z "$GIT_COMMIT" ]; then
28 GIT_COMMIT=$(git rev-parse remotes/origin/"$GIT_BRANCH")
32 rm -rf "$SRC_DIR"
37 if [ ! -d "$SRC_DIR" ]; then
38 git clone --depth 1 "$GIT_URL" -b "$GIT_BRANCH" "$SRC_DIR"
41 git fetch --depth 1 origin "$GIT_COMMIT"
[all …]
/cloud-hypervisor/.github/workflows/
H A Dgitlint.yaml8 runs-on: ubuntu-latest
10 - name: Checkout repository
14 fetch-depth: 0
15 - name: Set up Python 3.10
16 uses: actions/setup-python@v5
18 python-version: "3.10"
19 - name: Install dependencies
21 python -m pip install --upgrade pip
22 pip install --upgrade gitlint
23 - name: Lint git commit messages
[all …]
H A Dintegration-metrics.yaml5 - main
10 runs-on: bare-metal-9950x
14 - name: Code checkout
17 fetch-depth: 0
18 - name: Run metrics tests
19 timeout-minutes: 60
20 run: scripts/dev_cli.sh tests --metrics -- -- --report-file /root/workloads/metrics.json
21 - name: Upload metrics report
22 …run: 'curl -X PUT https://ch-metrics.azurewebsites.net/api/publishmetrics -H "x-functions-key: $ME…
H A Dpackage-consistency.yaml4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
10 runs-on: ubuntu-latest
12 - name: Code checkout
15 fetch-depth: 0
17 - name: Install dependencies
18 run: sudo apt install -y python3
20 - name: Install Rust toolchain stable
21 uses: dtolnay/rust-toolchain@stable
25 - name: Check Rust VMM Package Consistency of root Workspace
[all …]
H A Dintegration-rate-limiter.yaml1 name: Cloud Hypervisor Tests (Rate-Limiter)
4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
9 name: Tests (Rate-Limiter)
10 runs-on: ${{ github.event_name == 'pull_request' && 'ubuntu-latest' || 'bare-metal-9950x' }}
14 - name: Code checkout
18 fetch-depth: 0
19 - name: Run rate-limiter integration tests
21 timeout-minutes: 20
22 run: scripts/dev_cli.sh tests --integration-rate-limiter
[all …]
H A Dintegration-vfio.yaml4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
10 runs-on: ${{ github.event_name == 'pull_request' && 'ubuntu-latest' || 'vfio-nvidia' }}
14 - name: Fix workspace permissions
16 run: sudo chown -R runner:runner ${GITHUB_WORKSPACE}
17 - name: Code checkout
21 fetch-depth: 0
22 - name: Run VFIO integration tests
24 timeout-minutes: 15
25 run: scripts/dev_cli.sh tests --integration-vfio
[all …]
H A Dpreview-riscv64.yaml1 name: Cloud Hypervisor RISC-V 64-bit Preview
4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
10 runs-on: riscv64-qemu-host
12 fail-fast: false
15 - hypervisor
16 - arch
17 - vm-allocator
18 - devices
21 - name: Code checkout
[all …]
H A Dintegration-arm64.yaml4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
9 timeout-minutes: 120
11 runs-on: bookworm-arm64
13 - name: Fix workspace permissions
14 run: sudo chown -R runner:runner ${GITHUB_WORKSPACE}
15 - name: Code checkout
18 fetch-depth: 0
19 - name: Run unit tests (musl)
20 run: scripts/dev_cli.sh tests --unit --libc musl
[all …]
H A Dintegration-windows.yaml4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
10 runs-on: ${{ github.event_name == 'pull_request' && 'ubuntu-latest' || 'garm-jammy-16' }}
12 - name: Code checkout
16 fetch-depth: 0
17 - name: Install Docker
20 sudo apt-get update
21 sudo apt-get -y install ca-certificates curl gnupg
22 …curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyring…
23 sudo chmod a+r /usr/share/keyrings/docker-archive-keyring.gpg
[all …]
H A Dbuild.yaml4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
10 runs-on: ubuntu-latest
12 fail-fast: false
15 - stable
16 - beta
17 - nightly
18 - "1.83.0"
20 - x86_64-unknown-linux-gnu
21 - x86_64-unknown-linux-musl
[all …]
H A Dintegration-x86-64.yaml1 name: Cloud Hypervisor Tests (x86-64)
4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
9 timeout-minutes: 60
11 fail-fast: false
13 runner: ['garm-jammy', "garm-jammy-amd"]
15 name: Tests (x86-64)
16 …runs-on: ${{ github.event_name == 'pull_request' && !(matrix.runner == 'garm-jammy' && matrix.libc…
18 - name: Code checkout
19 …if: ${{ github.event_name != 'pull_request' || (matrix.runner == 'garm-jammy' && matrix.libc == 'g…
[all …]
H A Dquality.yaml4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
10 runs-on: ubuntu-latest
11 continue-on-error: ${{ matrix.experimental }}
13 fail-fast: false
16 - beta
17 - stable
19 - aarch64-unknown-linux-gnu
20 - aarch64-unknown-linux-musl
21 - x86_64-unknown-linux-gnu
[all …]