Skip to content

Commit 27261f2

Browse files
committed
Update ccpp.yml
update cmake error cli Update ccpp.yml Update ccpp.yml Update ccpp.yml Update ccpp.yml Update ccpp.yml Update ccpp.yml Update ccpp.yml Update README.md
1 parent 66189da commit 27261f2

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

.github/workflows/ccpp.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build
2+
3+
on: [push]
4+
5+
jobs:
6+
unix-build:
7+
name: Test on ${{ matrix.os }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [ubuntu-latest, macOS-latest]
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: configure
16+
run: cmake .
17+
- name: make
18+
run: make
19+
20+
win-build:
21+
name: Test on windows-latest
22+
runs-on: windows-latest
23+
24+
steps:
25+
- uses: actions/checkout@v1
26+
- name: configure
27+
run: cmake .
28+
- name: make
29+
run: cmake --build . --target ALL_BUILD --config Release -- /nologo /verbosity:minimal /maxcpucount

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ add_executable(stegacito ${SOURCES})
1616

1717
IF (NOT WIN32)
1818
target_link_libraries(stegacito m)
19+
ENDIF()

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2+
[![Actions Status](https://github.com/Coldragon/Stegacito/workflows/Build/badge.svg)](https://github.com/Coldragon/Stegacito/actions) on Windows, MacOS and Linux
13
# Stegacito
24

35
Hide a File inside a PNG image.

0 commit comments

Comments
 (0)