Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create cmake.yml #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: CMake

on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
CMAKE_BUILD_TYPE: Release

jobs:
build-binaries:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]

# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v3

- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: |
mkdir build
cd build
cmake ..

- name: Build
# Build your program with the given configuration
run: |
cd build
cmake --build . --config ${{ env.CMAKE_BUILD_TYPE }}
ls

- name: Upload Posix Build Artifact
uses: actions/[email protected]
if: runner.os != 'Windows'
with:
# Artifact name
name: cgit_${{ runner.os }}
# A file, directory or wildcard pattern that describes what to upload
path: build/cgit
retention-days: 15

- name: Upload Windows Build Artifact
uses: actions/[email protected]
if: runner.os == 'Windows'
with:
# Artifact name
name: cgit_${{ runner.os }}
# A file, directory or wildcard pattern that describes what to upload
path: build/${{ env.CMAKE_BUILD_TYPE }}/cgit.exe
retention-days: 15
10 changes: 6 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ project(cgit CXX)

set(CMAKE_CXX_STANDARD 11)

IF (WIN32)
if (WIN32)
set(CMAKE_CXX_FLAGS_RELEASE "/MT ${CMAKE_CXX_FLAGS}")
set(CMAKE_CXX_FLAGS_DEBUG "/MTd ${CMAKE_CXX_FLAGS}")
ELSE ()
set(CMAKE_CXX_FLAGS "-static ${CMAKE_CXX_FLAGS}")
ENDIF ()
elseif (APPLE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
else ()
set(CMAKE_CXX_FLAGS "-static ${CMAKE_CXX_FLAGS}")
endif ()
add_executable(cgit src/main.cpp src/cgit.cpp src/string.hpp src/utils.hpp src/utils.cpp)

message(STATUS ${CMAKE_INSTALL_BINDIR})
Expand Down