This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ‘ฉโ€๐Ÿ’ปโ€ Reduce number of rust build caches

+14 -3
+10 -3
.github/workflows/check.yml
··· 20 20 - uses: actions-rs/toolchain@v1 21 21 with: { toolchain: stable } 22 22 - uses: Swatinem/rust-cache@v2 23 + with: 24 + shared-key: build 23 25 - uses: extractions/setup-just@v3 24 26 - uses: carlosperate/download-file-action@v2 25 27 with: ··· 67 69 - uses: actions-rs/toolchain@v1 68 70 with: { toolchain: stable } 69 71 - uses: Swatinem/rust-cache@v2 72 + with: 73 + shared-key: check 70 74 - uses: actions-rs/cargo@v1 71 75 with: { command: check, args: --workspace } 72 76 - uses: actions-rs/cargo@v1 ··· 82 86 - uses: actions-rs/toolchain@v1 83 87 with: { toolchain: stable } 84 88 - uses: Swatinem/rust-cache@v2 89 + with: 90 + shared-key: build 85 91 - uses: actions-rs/cargo@v1 86 92 with: { command: test, args: --workspace } 87 93 ··· 112 118 - uses: actions-rs/toolchain@v1 113 119 with: { toolchain: stable } 114 120 - uses: Swatinem/rust-cache@v2 115 - 121 + with: 122 + shared-key: build 116 123 - run: mv baseline.mp4 old-baseline.mp4 117 124 - run: cargo run -- --duration 10 baseline.mp4 118 125 - name: Convert to yuv4mpeg ··· 172 179 - uses: actions-rs/toolchain@v1 173 180 with: { toolchain: stable } 174 181 - uses: Swatinem/rust-cache@v2 182 + with: 183 + shared-key: build 175 184 - uses: extractions/setup-just@v3 176 185 - run: cargo run -- --duration 10 result.mp4 177 186 - name: Convert to yuv4mpeg ··· 228 237 - name: Fail if score too low 229 238 if: steps.results.outputs.conclusion == 'failure' 230 239 run: exit 1 231 - 232 -
+2
.github/workflows/docs.yml
··· 22 22 - uses: actions-rs/toolchain@v1 23 23 with: { toolchain: stable } 24 24 - uses: Swatinem/rust-cache@v2 25 + with: 26 + shared-key: build 25 27 - uses: actions-rs/cargo@v1 26 28 with: { command: doc, args: --no-deps } 27 29 - uses: extractions/setup-just@v3
+2
.github/workflows/fixup.yml
··· 17 17 - uses: actions-rs/toolchain@v1 18 18 with: { toolchain: stable } 19 19 - uses: Swatinem/rust-cache@v2 20 + with: 21 + shared-key: check 20 22 - uses: actions-rs/cargo@v1 21 23 with: { command: fix, args: --workspace } 22 24 - name: Commit changes