Add optional standalone executable directory (#2)
* add standalone executable * update readme * add standalone workflow * fix path
This commit is contained in:
parent
ad1f006762
commit
1dc64084eb
5 changed files with 122 additions and 10 deletions
20
.github/workflows/standalone.yml
vendored
Normal file
20
.github/workflows/standalone.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: Standalone
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- name: configure
|
||||
run: cmake -Hstandalone -Bbuild
|
||||
|
||||
- name: build
|
||||
run: cmake --build build
|
||||
|
||||
- name: run
|
||||
run: ./build/Greeter
|
Loading…
Add table
Add a link
Reference in a new issue