Skip to content
Merged
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
jvm: temurin:21
- name: Install libpq (Linux)
if: runner.os == 'Linux'
run: sudo apt-get install -y libpq-dev
run: sudo apt-get update && sudo apt-get install -y libpq-dev
- name: Install libpq (macOS)
if: runner.os == 'macOS'
run: brew install libpq && brew link --force libpq
Expand Down
8 changes: 4 additions & 4 deletions PgCodeGen.scala
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
//> using scala 3.7.4
//> using scala 3.8.3
//> using dep com.indoorvivants.roach::core::0.1.0
//> using dep com.github.lolgab::scala-native-crypto::0.2.1
//> using dep com.github.lolgab::scala-native-crypto::0.3.0
//> using platform native
//> using nativeVersion 0.5.9
//> using nativeVersion 0.5.10

package com.anymindgroup

Expand Down Expand Up @@ -853,7 +853,7 @@ object PgCodeGen {
val res = sql"SELECT true".one(bool).contains(true)
} catch {
case e: Throwable =>
if attempt <= 10 then check(attempt + 1)
if attempt <= 50 then check(attempt + 1)
else
Console.err.println(s"Could not connect to docker on $host:$port ${e.getMessage()}")
throw e
Expand Down
4 changes: 2 additions & 2 deletions PgCodeGenTest.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala 3.7.4
//> using dep dev.rolang::dumbo:0.6.1
//> using scala 3.8.3
//> using dep dev.rolang::dumbo:0.8.1
//> using platform jvm
//> using jvm system
//> using file test-generated/generated
Expand Down
Loading