From 38869c4aaac5878e4a8a9f9d35ddfb00a89775c4 Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Thu, 24 Apr 2025 03:16:12 +0200 Subject: [PATCH] fix workflow. --- .github/workflows/build.yaml | 3 +++ CMakeLists.txt | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6be7b345..1226562e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -62,6 +62,9 @@ jobs: disk-cache: ${{ github.workflow }} repository-cache: true + - name: "Build with Bazel" + run: bazel build ... + - name: "Tests with Bazel" run: bazel run tests diff --git a/CMakeLists.txt b/CMakeLists.txt index 1401920e..0af94e52 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12) project(ftxui LANGUAGES CXX - VERSION 6.0.3 + VERSION 6.0.2 DESCRIPTION "C++ Functional Terminal User Interface." ) @@ -17,7 +17,7 @@ option(FTXUI_ENABLE_COVERAGE "Execute code coverage" OFF) option(FTXUI_DEV_WARNINGS "Enable more compiler warnings and warnings as errors" OFF) set(FTXUI_MICROSOFT_TERMINAL_FALLBACK_HELP_TEXT "On windows, assume the \ -terminal used will be one of Microsoft and use a set of reasonable fallback \ +terminal used will be one of Microsoft and use a set of reasonnable fallback \ to counteract its implementations problems.") if (WIN32) option(FTXUI_MICROSOFT_TERMINAL_FALLBACK