Skip to content

Add Windows-specific localtime handling #8

Add Windows-specific localtime handling

Add Windows-specific localtime handling #8

name: C++ Builder
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
include:
- os: macos-latest
artifact: mac
- os: windows-latest
artifact: windows
- os: ubuntu-latest
artifact: linux
steps:
- uses: actions/checkout@v2
- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v1.8
with:
cmake-version: '3.28.0'
- name: Configure CMake
run: cmake -B build
- name: Build CMake
run: cmake --build build --config Release
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.artifact }}
path: bin/*