Skip to content

Commit 0c9abbf

Browse files
committed
final final test
1 parent 5998407 commit 0c9abbf

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
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

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
clippy:
2828
name: Clippy lints
2929
runs-on: ubuntu-latest
30-
continue-on-error: true
3130
steps:
3231
- uses: actions/checkout@v4
3332

@@ -40,7 +39,8 @@ jobs:
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

.github/workflows/docker.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ jobs:
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
@@ -52,4 +49,4 @@ jobs:
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

0 commit comments

Comments
 (0)