Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Start BigQuery emulator
run: |
docker run -d --name bq-emulator -p 9050:9050 --memory=2g --restart=on-failure:5 \
ghcr.io/goccy/bigquery-emulator:0.6.6 --project=test-project
ghcr.io/goccy/bigquery-emulator:0.7.2 --project=test-project
# Wait for emulator to be ready
for i in $(seq 1 30); do
if curl -sf http://localhost:9050/bigquery/v2/projects/test-project/datasets > /dev/null 2>&1; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/start-emulator.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Starts the goccy/bigquery-emulator Docker container.
#>
param(
[string]$Image = 'ghcr.io/goccy/bigquery-emulator:0.6.6',
[string]$Image = 'ghcr.io/goccy/bigquery-emulator:0.7.2',
[int]$RestPort = 9050,
[string]$ProjectId = 'test-project'
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class BigQuerySession : IAsyncLifetime

private string? _containerId;
private bool _externalEmulator;
private const string EmulatorImage = "ghcr.io/goccy/bigquery-emulator:0.6.6";
private const string EmulatorImage = "ghcr.io/goccy/bigquery-emulator:0.7.2";
private const int EmulatorRestPort = 9050;
private const string EmulatorProjectId = "test-project";
private readonly SemaphoreSlim _restartLock = new(1, 1);
Expand Down
Loading