fixing ci ?

This commit is contained in:
Clément Le Bihan
2021-06-17 13:55:20 +02:00
parent 80013ddb41
commit ff172e9b47
2 changed files with 7 additions and 21 deletions
+7
View File
@@ -43,7 +43,14 @@ jobs:
if: matrix.name == 'Linux'
run: test -f build/bomberman
- name: Archive production artifact for Windows binary
if: matrix.name == 'Windows'
uses: actions/upload-artifact@v1
with:
name: BombermanWindows.exe
path: build/Debug/bomberman.exe
- name: Archive production artifact for Linux binary
if: matrix.name == 'Linux'
uses: actions/upload-artifact@v1
with:
name: BombermanLinux
path: build/bomberman
-21
View File
@@ -1,21 +0,0 @@
name: Linux Build (Epitech Container)
on: [push, pull_request]
jobs:
testbox:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
container:
image: epitechcontent/epitest-docker:latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build
run: |
mkdir build && cd build
cmake ..
cmake --build .
- name: CheckBinaryName
shell: bash
run: test -f build/bomberman