Compare commits

...

2 Commits

Author SHA1 Message Date
  Philipp Oppermann 5c1ef22cf6
Run `rustup toolchain install` in each CI job 10 months ago
  Philipp Oppermann 66678f61d0
Debug: Update rustup to trigger errors 10 months ago
1 changed files with 21 additions and 2 deletions
Unified View
  1. +21
    -2
      .github/workflows/ci.yml

+ 21
- 2
.github/workflows/ci.yml View File

@@ -30,7 +30,10 @@ jobs:
shell: bash shell: bash
if: runner.os == 'Windows' if: runner.os == 'Windows'


- run: rustup self update

- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: rustup toolchain install
- uses: r7kamura/rust-problem-matchers@v1.1.0 - uses: r7kamura/rust-problem-matchers@v1.1.0
- run: cargo --version --verbose - run: cargo --version --verbose
- name: Free Disk Space (Ubuntu) - name: Free Disk Space (Ubuntu)
@@ -80,7 +83,9 @@ jobs:
runs-on: ${{ matrix.platform }} runs-on: ${{ matrix.platform }}
timeout-minutes: 60 timeout-minutes: 60
steps: steps:
- run: rustup self update
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: rustup toolchain install
- uses: r7kamura/rust-problem-matchers@v1.1.0 - uses: r7kamura/rust-problem-matchers@v1.1.0
- run: cargo --version --verbose - run: cargo --version --verbose
- name: Free Disk Space (Ubuntu) - name: Free Disk Space (Ubuntu)
@@ -141,7 +146,9 @@ jobs:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
timeout-minutes: 45 timeout-minutes: 45
steps: steps:
- run: rustup self update
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: rustup toolchain install
- uses: r7kamura/rust-problem-matchers@v1.1.0 - uses: r7kamura/rust-problem-matchers@v1.1.0


- name: Free Disk Space (Ubuntu) - name: Free Disk Space (Ubuntu)
@@ -219,7 +226,9 @@ jobs:
runs-on: ${{ matrix.platform }} runs-on: ${{ matrix.platform }}
timeout-minutes: 60 timeout-minutes: 60
steps: steps:
- run: rustup self update
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: rustup toolchain install
- uses: r7kamura/rust-problem-matchers@v1.1.0 - uses: r7kamura/rust-problem-matchers@v1.1.0
- run: cargo --version --verbose - run: cargo --version --verbose
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
@@ -242,7 +251,9 @@ jobs:
runs-on: ${{ matrix.platform }} runs-on: ${{ matrix.platform }}
timeout-minutes: 60 timeout-minutes: 60
steps: steps:
- run: rustup self update
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: rustup toolchain install
- uses: r7kamura/rust-problem-matchers@v1.1.0 - uses: r7kamura/rust-problem-matchers@v1.1.0
- run: cargo --version --verbose - run: cargo --version --verbose
- name: Free Disk Space (Ubuntu) - name: Free Disk Space (Ubuntu)
@@ -354,13 +365,13 @@ jobs:


dora destroy dora destroy


# Run Python queue latency test
# Run Python queue latency test
dora run tests/queue_size_latest_data_python/dataflow.yaml dora run tests/queue_size_latest_data_python/dataflow.yaml


# Run Python queue latency test + timeout # Run Python queue latency test + timeout
dora run tests/queue_size_and_timeout_python/dataflow.yaml dora run tests/queue_size_and_timeout_python/dataflow.yaml


# Run Rust queue latency test
# Run Rust queue latency test
dora build tests/queue_size_latest_data_rust/dataflow.yaml dora build tests/queue_size_latest_data_rust/dataflow.yaml
dora run tests/queue_size_latest_data_rust/dataflow.yaml dora run tests/queue_size_latest_data_rust/dataflow.yaml


@@ -406,7 +417,9 @@ jobs:
name: "Clippy" name: "Clippy"
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: rustup self update
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: rustup toolchain install


- uses: r7kamura/rust-problem-matchers@v1.1.0 - uses: r7kamura/rust-problem-matchers@v1.1.0
- run: cargo --version --verbose - run: cargo --version --verbose
@@ -424,7 +437,9 @@ jobs:
name: "Formatting" name: "Formatting"
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: rustup self update
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: rustup toolchain install
- uses: r7kamura/rust-problem-matchers@v1.1.0 - uses: r7kamura/rust-problem-matchers@v1.1.0
- name: "rustfmt" - name: "rustfmt"
run: cargo fmt --all -- --check run: cargo fmt --all -- --check
@@ -433,7 +448,9 @@ jobs:
name: "License Checks" name: "License Checks"
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: rustup self update
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: rustup toolchain install


- uses: r7kamura/rust-problem-matchers@v1.1.0 - uses: r7kamura/rust-problem-matchers@v1.1.0
- run: cargo --version --verbose - run: cargo --version --verbose
@@ -482,7 +499,9 @@ jobs:
target: x86_64-apple-darwin target: x86_64-apple-darwin
fail-fast: false fail-fast: false
steps: steps:
- run: rustup self update
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: rustup toolchain install
- uses: r7kamura/rust-problem-matchers@v1.1.0 - uses: r7kamura/rust-problem-matchers@v1.1.0
- name: "Add toolchains" - name: "Add toolchains"
run: rustup target add ${{ matrix.platform.target }} run: rustup target add ${{ matrix.platform.target }}


Loading…
Cancel
Save