Skip to content

Commit d7e9a87

Browse files
JonZeollaclaude
andcommitted
feat: re-enable Linux CI jobs and clean up debug output
Windows smoke test is passing. Re-enable lint and test jobs, remove ZENABLE_LOGLEVEL=DEBUG and diagnostic ls output. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 98f821c commit d7e9a87

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ defaults:
2424
jobs:
2525
lint:
2626
name: Lint
27-
if: false # Temporarily disabled while iterating on Windows support
2827
runs-on: ubuntu-24.04
2928
steps:
3029
- name: Checkout the repository
@@ -40,7 +39,6 @@ jobs:
4039
run: task -v lint
4140
test:
4241
name: Test
43-
if: false # Temporarily disabled while iterating on Windows support
4442
runs-on: ubuntu-24.04
4543
permissions:
4644
contents: write
@@ -107,8 +105,6 @@ jobs:
107105
windows-smoke-test:
108106
name: Windows Smoke Test
109107
runs-on: windows-latest
110-
env:
111-
ZENABLE_LOGLEVEL: DEBUG
112108
steps:
113109
# Note: no checkout step. The cookiecutter template directory contains
114110
# characters (pipe, quotes) that are illegal on NTFS, so we cannot check
@@ -237,9 +233,6 @@ jobs:
237233
shell: bash
238234
run: |
239235
export PATH="$HOME/.zenable/bin:$PATH"
240-
echo "Checking $HOME/.zenable/:"
241-
ls -laR "$HOME/.zenable/" 2>/dev/null || echo "$HOME/.zenable/ does not exist"
242-
echo "---"
243236
zenable version
244237
finalizer:
245238
# This gives us something to set as required in the repo settings. Some projects use dynamic fan-outs using matrix strategies and the fromJSON function, so
@@ -249,7 +242,7 @@ jobs:
249242
name: Finalize the pipeline
250243
runs-on: ubuntu-24.04
251244
# Keep this aligned with the above jobs
252-
needs: [lint, test, windows-smoke-test] # lint and test temporarily disabled
245+
needs: [lint, test, windows-smoke-test]
253246
if: always() # Ensure it runs even if "needs" fails or is cancelled
254247
steps:
255248
- name: Check for failed or cancelled jobs

0 commit comments

Comments
 (0)