Skip to content

Commit a84d3ef

Browse files
committed
hack enable ci on this branch and disable cargo-vet
1 parent b4cc4eb commit a84d3ef

1 file changed

Lines changed: 25 additions & 24 deletions

File tree

.github/workflows/ci.yml

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
on:
33
push:
44
branches:
5-
- main
5+
- "*"
66
tags:
77
- "*"
88
pull_request:
@@ -82,28 +82,29 @@ jobs:
8282
- name: cargo doc
8383
run: cargo doc --locked -p puffin -p puffin_egui -p puffin_http -p --lib --no-deps --all-features
8484

85-
cargo-vet:
86-
name: Vet Dependencies
87-
runs-on: ubuntu-latest
88-
env:
89-
CARGO_VET_VERSION: 0.9.1
90-
steps:
91-
- uses: actions/checkout@v4
92-
- uses: dtolnay/rust-toolchain@stable
93-
- uses: actions/cache@v3
94-
with:
95-
path: ${{ runner.tool_cache }}/cargo-vet
96-
key: cargo-vet-bin-${{ env.CARGO_VET_VERSION }}
97-
- name: Add the tool cache directory to the search path
98-
run: echo "${{ runner.tool_cache }}/cargo-vet/bin" >> $GITHUB_PATH
99-
- name: Ensure that the tool cache is populated with the cargo-vet binary
100-
# build from source, as are not published binaries yet :(
101-
# tracked in https://github.com/mozilla/cargo-vet/issues/484
102-
run: cargo +stable install --root ${{ runner.tool_cache }}/cargo-vet --version ${{ env.CARGO_VET_VERSION }} cargo-vet
103-
- name: Invoke cargo-vet
104-
run: |
105-
cargo vet --locked
106-
cargo vet --locked >> $GITHUB_STEP_SUMMARY
85+
# cargo-vet:
86+
# name: Vet Dependencies
87+
# runs-on: ubuntu-latest
88+
# env:
89+
# CARGO_VET_VERSION: 0.9.1
90+
# steps:
91+
# - uses: actions/checkout@v4
92+
# - uses: dtolnay/rust-toolchain@stable
93+
# - uses: actions/cache@v3
94+
# with:
95+
# path: ${{ runner.tool_cache }}/cargo-vet
96+
# key: cargo-vet-bin-${{ env.CARGO_VET_VERSION }}
97+
# - name: Add the tool cache directory to the search path
98+
# run: echo "${{ runner.tool_cache }}/cargo-vet/bin" >> $GITHUB_PATH
99+
# - name: Ensure that the tool cache is populated with the cargo-vet binary
100+
# # build from source, as are not published binaries yet :(
101+
# # tracked in https://github.com/mozilla/cargo-vet/issues/484
102+
# # TODO: cargo-vet now have prebuild binaries https://github.com/mozilla/cargo-vet/releases/tag/v0.10.0
103+
# run: cargo +stable install --root ${{ runner.tool_cache }}/cargo-vet --version ${{ env.CARGO_VET_VERSION }} cargo-vet
104+
# - name: Invoke cargo-vet
105+
# run: |
106+
# cargo vet --locked
107+
# cargo vet --locked >> $GITHUB_STEP_SUMMARY
107108

108109
taplo:
109110
name: Toml format check
@@ -112,4 +113,4 @@ jobs:
112113
- uses: actions/checkout@v4
113114
- uses: gwen-lg/taplo-action@v1
114115
with:
115-
format: true
116+
format: true

0 commit comments

Comments
 (0)