From 21c0054efd9cf105e06424c7b4294f7a379c16d1 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Thu, 29 Aug 2024 08:11:52 +0000 Subject: [PATCH] add fluentci.toml --- .fluentci/fluentci.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .fluentci/fluentci.toml diff --git a/.fluentci/fluentci.toml b/.fluentci/fluentci.toml new file mode 100644 index 0000000..98c3760 --- /dev/null +++ b/.fluentci/fluentci.toml @@ -0,0 +1,13 @@ +[[steps]] +name = "Run tests" +command = [ + "fluentci run --wasm postgres start", + "fluentci run --wasm deno task test", +] +env = ["POSTGRES_USER=postgres", "POSTGRES_DB=demo"] + +[[steps]] +name = "Compile" +command = [ + "fluentci run --wasm deno compile -A --target x86_64-unknown-linux-gnu --output=app main.ts", +]