Skip to content

Commit f649d28

Browse files
committed
updated ci
1 parent 7cf2286 commit f649d28

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818
strategy:
1919
matrix:
20-
# os: [ubuntu-20.04, windows-latest, macos-latest]
21-
os: [windows-latest]
20+
os: [ubuntu-20.04, windows-latest, macos-latest]
2221

2322
steps:
2423
- uses: actions/checkout@v4
@@ -58,12 +57,18 @@ jobs:
5857
shell: pwsh
5958
run: |
6059
make compile-windows
60+
Write-Host "Running json_equal tests..."
6161
Get-Content test/json_equal.sql | sqlite3.exe | Out-File -FilePath test.log
6262
if (Select-String -Path test.log -Pattern '^[0-9_]+.[^1]$') { throw 'Test failed' }
63+
Write-Host "json_equal tests completed successfully."
64+
Write-Host "Running regexp tests..."
6365
Get-Content test/regexp.sql | sqlite3.exe | Out-File -FilePath test.log
6466
if (Select-String -Path test.log -Pattern '^[0-9_]+.[^1]$') { throw 'Test failed' }
67+
Write-Host "regexp tests completed successfully."
68+
Write-Host "Running split_part tests..."
6569
Get-Content test/split_part.sql | sqlite3.exe | Out-File -FilePath test.log
6670
if (Select-String -Path test.log -Pattern '^[0-9_]+.[^1]$') { throw 'Test failed' }
71+
Write-Host "split_part tests completed successfully."
6772
6873
- name: Compile and test on macOS
6974
if: matrix.os == 'macos-latest'

0 commit comments

Comments
 (0)