Remove as causes useless errors
This commit is contained in:
parent
5820c690a2
commit
ed057d1693
@ -1,23 +1,18 @@
|
|||||||
name: Gitea Actions Demo
|
name: Gitea Actions Demo
|
||||||
run-name: Build-Test bannertool
|
run-name: Build-Test bannertool
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Build:
|
Build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Install Tools
|
- name: Install Tools
|
||||||
run: |
|
run: |
|
||||||
apt-get update -y
|
apt-get update -y
|
||||||
apt-get install build-essential cmake -y
|
apt-get install build-essential cmake -y
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
cmake -B cmake-build-debug
|
cmake -B cmake-build-debug
|
||||||
cmake --build cmake-build-debug
|
cmake --build cmake-build-debug
|
||||||
- name: upload artifact
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: bannertool
|
|
||||||
path: cmake-build-debug/bannertool
|
|
Loading…
Reference in New Issue
Block a user