Skip to content

Bump tokio from 1.47.0 to 1.47.1 #557

Bump tokio from 1.47.0 to 1.47.1

Bump tokio from 1.47.0 to 1.47.1 #557

Workflow file for this run

name: ci-flow
on:
pull_request:
push:
branches:
- master
- "releases/*"
# tags-ignore:
# - "[0-9]+.[0-9]+.[0-9]+*"
permissions:
contents: read
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
build:
runs-on: ${{ matrix.os.imageName }}
strategy:
matrix:
rust_toolchain: ["stable"]
os:
- imageName: ubuntu-latest
target_platform: x86_64-unknown-linux-gnu
- target_platform: x86_64-apple-darwin
imageName: "macOS-latest"
profile_rustup: minimal
# - imageName: "macOS-latest"
# target_platform: aarch64-apple-darwin
# - imageName: windows-latest
# target_platform:
steps:
- uses: actions/checkout@v4
- uses: mozilla-actions/sccache-action@v0.0.9
- uses: jdx/mise-action@v2
- name: Run tests
run: mise run ci
env:
TARGET: ${{ matrix.os.target_platform }}
# for list of xcode sdk see https://help.github.com/en/actions/automating-your-workflow-with-github-actions/software-installed-on-github-hosted-runners#xcode
# DEVELOPER_DIR: "/Applications/Xcode_11.app/Contents/Developer"
- run: ${SCCACHE_PATH} --show-stats
shell: bash
integration:
# Integration tests are linux only
runs-on: ubuntu-latest
steps:
- uses: nolar/setup-k3d-k3s@v1
with:
# version: v1.20
# k3d-kube
k3d-name: kube
# Used to avoid rate limits when fetching the releases from k3s repo.
# Anonymous access is limited to 60 requests / hour / worker
# github-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: mozilla-actions/sccache-action@v0.0.9
- uses: jdx/mise-action@v2
- name: Run on k3d
run: cargo run
- run: ${SCCACHE_PATH} --show-stats
shell: bash