From f2d231f1ab08be719decd0032b35ab821e562cb3 Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Sat, 7 Sep 2024 15:08:33 +0200 Subject: [PATCH 1/2] Add conda + LatestReleases CI build --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f31cc76a0..06584b1f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,11 +29,14 @@ jobs: project_tags: - Default - Unstable + - LatestReleases include: - project_tags: Default project_tags_cmake_options: "" - project_tags: Unstable project_tags_cmake_options: "-DROBOTOLOGY_PROJECT_TAGS=Unstable" + - project_tags: LatestReleases + project_tags_cmake_options: "-DROBOTOLOGY_PROJECT_TAGS=Custom -DROBOTOLOGY_PROJECT_TAGS_CUSTOM_FILE=${GITHUB_WORKSPACE}/releases/latest.releases.yaml" steps: - uses: actions/checkout@v4 From f38f61f8997c7fd1364bb008ead1a1dbeb944567 Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Sat, 7 Sep 2024 15:09:15 +0200 Subject: [PATCH 2/2] ci; Switch fail-fast to true --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 06584b1f9..ba10edc15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: name: '[conda:Tags:${{ matrix.project_tags }}@${{ matrix.os }}@${{ matrix.build_type }}]' runs-on: ${{ matrix.os }} strategy: - fail-fast: false + fail-fast: true matrix: build_type: [Release] os: [ubuntu-latest, macos-12, macos-14, windows-2019, windows-2022] @@ -184,7 +184,7 @@ jobs: name: '[docker:Tags:${{ matrix.project_tags }}@${{ matrix.docker_image }}@${{ matrix.build_type }}]' runs-on: ubuntu-20.04 strategy: - fail-fast: false + fail-fast: true matrix: build_type: [Debug] cmake_generator: @@ -269,7 +269,7 @@ jobs: name: '[Tags:${{ matrix.project_tags }}@${{ matrix.os }}@${{ matrix.build_type }}]' runs-on: ${{ matrix.os }} strategy: - fail-fast: false + fail-fast: true matrix: build_type: [Release] os: [ubuntu-22.04, windows-2019]