@@ -147,35 +147,35 @@ jobs:
147147 env :
148148 RUST_LOG : ${{ runner.debug && 'TRACE' || 'DEBUG' }}
149149
150- check_semver :
151- runs-on : ubuntu-latest
152- env :
153- RUSTC_WRAPPER : " sccache"
154- SCCACHE_GHA_ENABLED : " on"
155- steps :
156- - uses : actions/checkout@v4
157- with :
158- fetch-depth : 0
159- - name : Install sccache
160- uses :
mozilla-actions/[email protected] 161-
162- - name : Setup Environment (PR)
163- if : ${{ github.event_name == 'pull_request' }}
164- shell : bash
165- run : |
166- echo "HEAD_COMMIT_SHA=$(git rev-parse origin/${{ github.base_ref }})" >> ${GITHUB_ENV}
167- - name : Setup Environment (Push)
168- if : ${{ github.event_name == 'push' || github.event_name == 'merge_group' }}
169- shell : bash
170- run : |
171- echo "HEAD_COMMIT_SHA=$(git rev-parse origin/main)" >> ${GITHUB_ENV}
172- - name : Check semver
173- # uses: obi1kenobi/cargo-semver-checks-action@v2
174- uses : n0-computer/cargo-semver-checks-action@feat-baseline
175- with :
176- package : iroh-docs
177- baseline-rev : ${{ env.HEAD_COMMIT_SHA }}
178- use-cache : false
150+ # check_semver:
151+ # runs-on: ubuntu-latest
152+ # env:
153+ # RUSTC_WRAPPER: "sccache"
154+ # SCCACHE_GHA_ENABLED: "on"
155+ # steps:
156+ # - uses: actions/checkout@v4
157+ # with:
158+ # fetch-depth: 0
159+ # - name: Install sccache
160+ # uses: mozilla-actions/[email protected] 161+
162+ # - name: Setup Environment (PR)
163+ # if: ${{ github.event_name == 'pull_request' }}
164+ # shell: bash
165+ # run: |
166+ # echo "HEAD_COMMIT_SHA=$(git rev-parse origin/${{ github.base_ref }})" >> ${GITHUB_ENV}
167+ # - name: Setup Environment (Push)
168+ # if: ${{ github.event_name == 'push' || github.event_name == 'merge_group' }}
169+ # shell: bash
170+ # run: |
171+ # echo "HEAD_COMMIT_SHA=$(git rev-parse origin/main)" >> ${GITHUB_ENV}
172+ # - name: Check semver
173+ # # uses: obi1kenobi/cargo-semver-checks-action@v2
174+ # uses: n0-computer/cargo-semver-checks-action@feat-baseline
175+ # with:
176+ # package: iroh-docs
177+ # baseline-rev: ${{ env.HEAD_COMMIT_SHA }}
178+ # use-cache: false
179179
180180 check_fmt :
181181 timeout-minutes : 30
@@ -238,25 +238,25 @@ jobs:
238238 - name : clippy check (default features)
239239 run : cargo clippy --workspace --all-targets
240240
241- msrv :
242- if : " github.event_name != 'pull_request' || ! contains(github.event.pull_request.labels.*.name, 'flaky-test')"
243- timeout-minutes : 30
244- name : Minimal Supported Rust Version
245- runs-on : ubuntu-latest
246- env :
247- RUSTC_WRAPPER : " sccache"
248- SCCACHE_GHA_ENABLED : " on"
249- steps :
250- - uses : actions/checkout@v4
251- - uses : dtolnay/rust-toolchain@master
252- with :
253- toolchain : ${{ env.MSRV }}
254- - name : Install sccache
255- uses :
mozilla-actions/[email protected] 256-
257- - name : Check MSRV all features
258- run : |
259- cargo +$MSRV check --workspace --all-targets
241+ # msrv:
242+ # if: "github.event_name != 'pull_request' || ! contains(github.event.pull_request.labels.*.name, 'flaky-test')"
243+ # timeout-minutes: 30
244+ # name: Minimal Supported Rust Version
245+ # runs-on: ubuntu-latest
246+ # env:
247+ # RUSTC_WRAPPER: "sccache"
248+ # SCCACHE_GHA_ENABLED: "on"
249+ # steps:
250+ # - uses: actions/checkout@v4
251+ # - uses: dtolnay/rust-toolchain@master
252+ # with:
253+ # toolchain: ${{ env.MSRV }}
254+ # - name: Install sccache
255+ # uses: mozilla-actions/[email protected] 256+
257+ # - name: Check MSRV all features
258+ # run: |
259+ # cargo +$MSRV check --workspace --all-targets
260260
261261 cargo_deny :
262262 timeout-minutes : 30
0 commit comments