Skip to content

Update all references of hosae to new name. #33

Update all references of hosae to new name.

Update all references of hosae to new name. #33

name: Build (Windows GCC x64)
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2.4.0
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
install: base-devel gcc mingw-w64-x86_64-SDL2 mingw-w64-x86_64-cmake
- 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: cmake -B build -G "MSYS Makefiles"
- name: Build
# Build your program with the given configuration
run: cmake --build build --config ${{env.BUILD_TYPE}}
- name: 'Upload Artifact'
uses: actions/upload-artifact@v2.2.4
with:
name: chronon-release
path: release/
retention-days: 30