File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed
Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 4242
4343 - name : Build
4444 env :
45- CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER : rust- lld
45+ CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER : lld-link
4646 run : cargo build --release --target ${{ matrix.target }}
4747
4848 - name : Upload artifact
Original file line number Diff line number Diff line change 2727 clippy :
2828 name : Clippy lints
2929 runs-on : ubuntu-latest
30- continue-on-error : true
3130 steps :
3231 - uses : actions/checkout@v4
3332
4039 uses : Swatinem/rust-cache@v2
4140
4241 - name : Run clippy
43- run : cargo clippy --all-features --all-targets -- -D warnings
42+ # If we ever get around to fix everything clippy complains about we can start failing on warning via: -- -D warnings
43+ run : cargo clippy --all-features --all-targets
4444
4545 test :
4646 name : Run tests
Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111 permissions :
1212 contents : read
13- packages : write
14- if : secrets.DOCKER_HUB_USERNAME && secrets.DOCKER_HUB_ACCESS_TOKEN
1513 steps :
1614 - name : Checkout
1715 uses : actions/checkout@v4
@@ -20,13 +18,12 @@ jobs:
2018 id : meta
2119 uses : docker/metadata-action@v5
2220 with :
23- images : |
24- ${{ secrets.DOCKER_HUB_USERNAME }}/mchprs
21+ images : ${{ secrets.DOCKER_HUB_USERNAME }}/mchprs
2522 tags : |
2623 type=raw,value=latest,enable={{is_default_branch}}
27- type=semver,pattern={{version }}
24+ type=semver,pattern={{major}}.{{minor}}.{{patch }}
2825 type=semver,pattern={{major}}.{{minor}}
29- type=sha,prefix=, format=short
26+ type=sha,format=short
3027
3128 - name : Set up QEMU
3229 uses : docker/setup-qemu-action@v3
5249 tags : ${{ steps.meta.outputs.tags }}
5350 labels : ${{ steps.meta.outputs.labels }}
5451 cache-from : type=gha
55- cache-to : type=gha,mode=max
52+ cache-to : type=gha
You can’t perform that action at this time.
0 commit comments