You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+1-8Lines changed: 1 addition & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,6 @@ defaults:
24
24
jobs:
25
25
lint:
26
26
name: Lint
27
-
if: false # Temporarily disabled while iterating on Windows support
28
27
runs-on: ubuntu-24.04
29
28
steps:
30
29
- name: Checkout the repository
@@ -40,7 +39,6 @@ jobs:
40
39
run: task -v lint
41
40
test:
42
41
name: Test
43
-
if: false # Temporarily disabled while iterating on Windows support
44
42
runs-on: ubuntu-24.04
45
43
permissions:
46
44
contents: write
@@ -107,8 +105,6 @@ jobs:
107
105
windows-smoke-test:
108
106
name: Windows Smoke Test
109
107
runs-on: windows-latest
110
-
env:
111
-
ZENABLE_LOGLEVEL: DEBUG
112
108
steps:
113
109
# Note: no checkout step. The cookiecutter template directory contains
114
110
# characters (pipe, quotes) that are illegal on NTFS, so we cannot check
@@ -237,9 +233,6 @@ jobs:
237
233
shell: bash
238
234
run: |
239
235
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 "---"
243
236
zenable version
244
237
finalizer:
245
238
# 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:
249
242
name: Finalize the pipeline
250
243
runs-on: ubuntu-24.04
251
244
# 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]
253
246
if: always() # Ensure it runs even if "needs" fails or is cancelled
0 commit comments