From 0ee8a350c551b5014d38ae496982af9f4a42c94b Mon Sep 17 00:00:00 2001 From: "arthur.jamet" Date: Tue, 1 Jun 2021 13:48:34 +0200 Subject: [PATCH 1/3] better workflow names --- .github/workflows/build_linux.yml | 2 +- .github/workflows/{build.yml => build_windows.yml} | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{build.yml => build_windows.yml} (98%) diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index 5bcd28fe..9f352ac4 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -1,4 +1,4 @@ -name: Linux Build epi env +name: Linux Build (Epitech Container) on: [push, pull_request] jobs: diff --git a/.github/workflows/build.yml b/.github/workflows/build_windows.yml similarity index 98% rename from .github/workflows/build.yml rename to .github/workflows/build_windows.yml index beea1b7f..a3a21944 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build_windows.yml @@ -1,4 +1,4 @@ -name: Build +name: Windows Build on: [push, pull_request] jobs: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f24a0564..e87b9b9d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Tests +name: Unit Tests on: [push, pull_request] jobs: From f13ab8d5fd378d879c03ac5f69fa558b9333d4c8 Mon Sep 17 00:00:00 2001 From: Arthi-chaud <60505370+Arthi-chaud@users.noreply.github.com> Date: Tue, 1 Jun 2021 12:03:57 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f81836d..ceac5364 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ A recreation of the classic Bomberman arcade game +[![Linux Build (Epitech Container)](https://github.com/AnonymusRaccoon/Bomberman/actions/workflows/build_linux.yml/badge.svg)](https://github.com/AnonymusRaccoon/Bomberman/actions/workflows/build_linux.yml) +[![Windows Build](https://github.com/AnonymusRaccoon/Bomberman/actions/workflows/build_windows.yml/badge.svg)](https://github.com/AnonymusRaccoon/Bomberman/actions/workflows/build_windows.yml) +[![Web Building](https://github.com/AnonymusRaccoon/Bomberman/actions/workflows/webassembly.yml/badge.svg)](https://github.com/AnonymusRaccoon/Bomberman/actions/workflows/webassembly.yml) +[![Unit Tests](https://github.com/AnonymusRaccoon/Bomberman/actions/workflows/test.yml/badge.svg)](https://github.com/AnonymusRaccoon/Bomberman/actions/workflows/test.yml) + Repository link: https://github.com/AnonymusRaccoon/Bomberman/ ## Demo @@ -65,4 +70,4 @@ Please adhere to this project's `code of conduct`. - [Arthur Jamet](https://github.com/Arthi-chaud "Arthi-Chaud") - [Louis Auzuret](https://github.com/GitBluub "Bluub") - [Benjamin Henry](https://github.com/EternalRat "EternalRat") -- [Tom Augier](https://github.com/TrueBabyChaise "TrueBabyChaise") \ No newline at end of file +- [Tom Augier](https://github.com/TrueBabyChaise "TrueBabyChaise") From 7dd4d089ab558ed4e2e436ac5f80f4f9f6548ce6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Tue, 1 Jun 2021 14:01:56 +0200 Subject: [PATCH 3/3] fixing compil lines in readme --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ceac5364..18e93e7a 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,10 @@ cd Bomberman Create `build` dir and compile using CMake ```bash -mkdir build && cd build && cmake .. && make +mkdir build +cd build +cmake .. +cmake --build . ``` Enjoy !