diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 480c60a..319100a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/PgCodeGen.scala b/PgCodeGen.scala index a05c92f..a89d2e4 100644 --- a/PgCodeGen.scala +++ b/PgCodeGen.scala @@ -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 @@ -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 diff --git a/PgCodeGenTest.scala b/PgCodeGenTest.scala index 975e558..dd70082 100644 --- a/PgCodeGenTest.scala +++ b/PgCodeGenTest.scala @@ -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