From 8cea1734d8dc026d36fc753ad73370094ef7b6bc Mon Sep 17 00:00:00 2001 From: Viktor Kovacs Date: Mon, 20 May 2024 19:27:53 +0200 Subject: [PATCH 1/3] Update action. --- .github/workflows/build.yml | 6 ++---- README.md | 1 - 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1586d031..301eb22e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,6 @@ name: Build on: push: - branches: [ master ] - pull_request: - branches: [ master ] jobs: build: @@ -14,7 +11,8 @@ jobs: strategy: matrix: os-type: [windows-latest, macos-latest, ubuntu-latest] - configuration: [Debug, Release, RelWithDebInfo] + configuration: [Debug, Release, RelWithDebInfo] + fail-fast: false steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 8cfc295a..81796d59 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ A visual scripting engine designed for embedding. The engine is written in modern C++ and compiles on several platforms with no external dependencies. Some platform dependent user interface utilities are also provided for Windows and MacOS platforms. -[![Build Status](https://ci.appveyor.com/api/projects/status/c0qxxixyhymfxfdf?svg=true)](https://ci.appveyor.com/project/kovacsv/visualscriptengine) [![Build Status](https://github.com/kovacsv/VisualScriptEngine/actions/workflows/build.yml/badge.svg)](https://github.com/kovacsv/VisualScriptEngine/actions/workflows/build.yml) ## Documentation From 6012754bb36c29e5ac3e8cb52a7b52e452900da0 Mon Sep 17 00:00:00 2001 From: Viktor Kovacs Date: Mon, 20 May 2024 19:30:30 +0200 Subject: [PATCH 2/3] Update workflow images. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 301eb22e..8d772904 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: - os-type: [windows-latest, macos-latest, ubuntu-latest] + os-type: [windows-2022, macos-13, ubuntu-20.04] configuration: [Debug, Release, RelWithDebInfo] fail-fast: false From 8d7f58dd0bd4521ed76224eda8f4516aa54e01c9 Mon Sep 17 00:00:00 2001 From: Viktor Kovacs Date: Mon, 20 May 2024 19:31:10 +0200 Subject: [PATCH 3/3] Update checkout action version. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8d772904..2400c7a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Configure run: cmake -B ${{github.workspace}}/Build -DCMAKE_BUILD_TYPE=${{matrix.configuration}} - name: Build