Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Add readme, license and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
langningchen committed Dec 23, 2023
1 parent a37b477 commit 1317244
Show file tree
Hide file tree
Showing 4 changed files with 679 additions and 21 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/cmake-single-platform.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CMake on a single platform
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: build
path: ${{github.workspace}}/build
Loading

0 comments on commit 1317244

Please sign in to comment.