Skip to content

Commit 07ac0cd

Browse files
committed
Address yaml warnings
Signed-off-by: Mauro Morales <[email protected]>
1 parent e2e0331 commit 07ac0cd

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.github/workflows/image-pr.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -174,18 +174,18 @@ jobs:
174174
flavor: ubuntu
175175
flavor_release: "24.04"
176176
family: "ubuntu"
177-
release_matcher: "23.10" # introduced so tests can be green while we wait for the kairos release with the latest flavor release
177+
release_matcher: "23.10" # introduced so tests can be green while we wait for the kairos release with the latest flavor release
178178
needs:
179179
- core-ubuntu-24-lts
180180

181181
# enable once the first alpine only release is out as it currently cannot find the latest alpine release properly
182-
#upgrade-latest-alpine:
183-
# uses: ./.github/workflows/reusable-upgrade-latest-test.yaml
184-
# with:
185-
# flavor: alpine
186-
# flavor_release: "3.19"
187-
# needs:
188-
# - core-alpine
182+
# upgrade-latest-alpine:
183+
# uses: ./.github/workflows/reusable-upgrade-latest-test.yaml
184+
# with:
185+
# flavor: alpine
186+
# flavor_release: "3.19"
187+
# needs:
188+
# - core-alpine
189189

190190
custom-partitioning:
191191
uses: ./.github/workflows/reusable-custom-partitioning-test.yaml

.github/workflows/image.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
fail-fast: false
137137
matrix:
138138
include:
139-
- flavor: opensuse # Kubo test needs systemd version 252+ which atm is not available in Leap
139+
- flavor: opensuse # Kubo test needs systemd version 252+ which atm is not available in Leap
140140
flavorRelease: tumbleweed
141141
reset:
142142
uses: ./.github/workflows/reusable-qemu-reset-test.yaml
@@ -216,16 +216,16 @@ jobs:
216216
flavor: ${{ matrix.flavor }}
217217
flavor_release: ${{ matrix.flavorRelease }}
218218
family: ${{ matrix.family }}
219-
release_matcher: ${{ matrix.releaseMatcher }} # introduced so tests can be green while we wait for the kairos release with the latest flavor release
219+
release_matcher: ${{ matrix.releaseMatcher }} # introduced so tests can be green while we wait for the kairos release with the latest flavor release
220220
needs:
221221
- core
222222
strategy:
223223
fail-fast: false
224224
matrix:
225225
include:
226226
# cant do alpine yet as it hasnt been released with the proper name
227-
#- flavor: alpine
228-
# flavorRelease: "3.19"
227+
# - flavor: alpine
228+
# flavorRelease: "3.19"
229229
- flavor: opensuse
230230
flavorRelease: leap-15.6
231231
family: opensuse
@@ -331,21 +331,21 @@ jobs:
331331
flavor: ${{ matrix.flavor }}
332332
flavor_release: ${{ matrix.flavorRelease }}
333333
family: ${{ matrix.family }}
334-
release_matcher: ${{ matrix.releaseMatcher }} # introduced so tests can be green while we wait for the kairos release with the latest flavor release
334+
release_matcher: ${{ matrix.releaseMatcher }} # introduced so tests can be green while we wait for the kairos release with the latest flavor release
335335
needs:
336336
- standard
337337
strategy:
338338
fail-fast: false
339339
max-parallel: 2
340340
matrix:
341341
include:
342+
# cant do alpine yet as it hasnt been released with the proper name
343+
# - flavor: "alpine"
344+
# flavorRelease: "3.19"
342345
- flavor: "opensuse"
343346
flavorRelease: "leap-15.6"
344347
family: "opensuse"
345348
releaseMatcher: "leap-15.5"
346-
# cant do alpine yet as it hasnt been released with the proper name
347-
#- flavor: "alpine"
348-
# flavorRelease: "3.19"
349349
notify:
350350
runs-on: ubuntu-latest
351351
if: failure()

.yamllint

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ extends: default
33
rules:
44
# 80 chars should be enough, but don't fail if a line is longer
55
line-length:
6-
max: 150
6+
max: 305
77
level: warning
88

99
# accept both key:
@@ -18,4 +18,4 @@ rules:
1818
check-keys: false
1919

2020
document-start:
21-
present: false
21+
present: false

Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ shellcheck-lint:
169169
FROM koalaman/shellcheck-alpine:$SHELLCHECK_VERSION
170170
WORKDIR /mnt
171171
COPY . .
172-
RUN find . -name "*.sh" -print | xargs -r -n1 shellcheck
172+
RUN find . -name "*.sh" ! -path "./examples/*" -print | xargs -r -n1 shellcheck
173173

174174
yamllint:
175175
FROM cytopia/yamllint

0 commit comments

Comments
 (0)