mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-05-23 14:58:36 +00:00
Separating actions to configure badges
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
name: Build commit artifact
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
Building:
|
||||
runs-on: [ubuntu-latest]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Build Makefile with CMake
|
||||
run: cmake .
|
||||
- name: Build with Makefile
|
||||
run: make
|
||||
- name: Archive production artifact
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: ComSquare
|
||||
path: ComSquare
|
||||
@@ -1,4 +1,4 @@
|
||||
name: Build commit artifact
|
||||
name: Testing current commit
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -6,21 +6,6 @@ on:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
Building:
|
||||
runs-on: [ubuntu-latest]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Build Makefile with CMake
|
||||
run: cmake .
|
||||
- name: Build with Makefile
|
||||
run: make
|
||||
- name: Archive production artifact
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: ComSquare
|
||||
path: ComSquare
|
||||
|
||||
Testing:
|
||||
runs-on: [ubuntu-latest]
|
||||
|
||||
Reference in New Issue
Block a user