From 5ee27a00bbd53acc0f70fa8eb003eaa642f56711 Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Thu, 6 Aug 2020 19:36:50 +0200 Subject: [PATCH 1/7] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e08d0bd..07eda4c 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ import PackageDescription let package = Package( name: "YourPackageName", dependencies: [ - .package(url: "https://github.com/fireblade-engine/ecs.git", from: "0.14.1") + .package(url: "https://github.com/fireblade-engine/ecs.git", from: "0.15.0") ], targets: [ .target( From da72850bf95ea1cab04c328b227229bfec768e08 Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Thu, 6 Aug 2020 19:38:06 +0200 Subject: [PATCH 2/7] Fix CI --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b06e3df..23ae0a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,6 @@ jobs: run: swift test -c release --skip-build --skip-update --parallel build-test-ubuntu-latest: - build-test-macOS-latest: runs-on: macos-latest steps: - uses: actions/checkout@v2 From 90c464185f0f890b572eee5e285035751fd06d6d Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Thu, 6 Aug 2020 19:39:43 +0200 Subject: [PATCH 3/7] Update ci.yml --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23ae0a2..d861837 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,14 +11,16 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 - - name: Test & Build Release + - name: Build Release run: swift build -c release + - name: Test Release run: swift test -c release --skip-build --skip-update --parallel build-test-ubuntu-latest: runs-on: macos-latest steps: - uses: actions/checkout@v2 - - name: Test & Build Release + - name: Build Release run: swift build -c release + - name: Test Release run: swift test -c release --skip-build --skip-update --parallel From 71e0ccb482d4fc6545300bb4cd5cc25922991551 Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Thu, 6 Aug 2020 19:41:54 +0200 Subject: [PATCH 4/7] Update ci.yml --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d861837..ab4c2bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: - name: Build Release run: swift build -c release - name: Test Release - run: swift test -c release --skip-build --skip-update --parallel + run: swift test -c release --skip-update --parallel build-test-ubuntu-latest: runs-on: macos-latest @@ -23,4 +23,4 @@ jobs: - name: Build Release run: swift build -c release - name: Test Release - run: swift test -c release --skip-build --skip-update --parallel + run: swift test -c release --skip-update --parallel From 6db9603986359dc1de53796c2e01e2bb4d6a385a Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Thu, 6 Aug 2020 19:44:41 +0200 Subject: [PATCH 5/7] Update documentation.yml --- .github/workflows/documentation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 58e7795..19513b0 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -6,7 +6,7 @@ on: paths: - .github/workflows/documentation.yml - Sources/FirebladeECS/**.swift - pull_request: + workflow_dispatch: branches: [ master ] paths: - .github/workflows/documentation.yml From 083e8386ccd4efb6c18df8a647dce93b9c810492 Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Thu, 6 Aug 2020 19:47:21 +0200 Subject: [PATCH 6/7] Update ci.yml --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab4c2bb..fceadd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,16 +11,16 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 + - name: Test + run: swift test --skip-update --parallel - name: Build Release run: swift build -c release - - name: Test Release - run: swift test -c release --skip-update --parallel build-test-ubuntu-latest: runs-on: macos-latest steps: - uses: actions/checkout@v2 + - name: Test + run: swift test --skip-update --parallel - name: Build Release run: swift build -c release - - name: Test Release - run: swift test -c release --skip-update --parallel From 83a07dd2dc3966359e399a7bc18fcb8833ca2480 Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Thu, 6 Aug 2020 19:54:41 +0200 Subject: [PATCH 7/7] Update README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 07eda4c..dd5310e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Fireblade ECS (Entity-Component System) -[![Build Status](https://travis-ci.com/fireblade-engine/ecs.svg?branch=master)](https://travis-ci.com/fireblade-engine/ecs) +[![github CI](https://github.com/fireblade-engine/ecs/workflows/CI/badge.svg)](https://github.com/fireblade-engine/ecs/actions?query=workflow%3ACI) +[![travis CI](https://travis-ci.com/fireblade-engine/ecs.svg?branch=master)](https://travis-ci.com/fireblade-engine/ecs) [![license](https://img.shields.io/badge/license-MIT-brightgreen.svg)](LICENSE) [![swift version](https://img.shields.io/badge/swift-5.1+-brightgreen.svg)](https://swift.org) [![platforms](https://img.shields.io/badge/platforms-%20macOS%20|%20iOS%20|%20tvOS%20|%20watchOS-brightgreen.svg)](#)