Skip to content

Commit

Permalink
Add update libs on push to main
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Aug 24, 2023
1 parent d1b9808 commit 123da16
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/update-lib-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,20 @@ jobs:
- name: Build Libs
if: steps.restore-libs.outputs.cache-hit != 'true'
run: make libs build_flags=-j8

x86_64-windows:
runs-on: windows-2022

name: x86-64 Windows MSVC
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache Libs
id: restore-libs
uses: actions/cache@v3
with:
path: build/libs
key: libs-windows-2022-${{ hashFiles('make.ps1', 'CMakeLists.txt', 'libs/CMakeLists.txt') }}
- name: Build Libs
if: steps.restore-libs.outputs.cache-hit != 'true'
run: .\make.ps1 -Command libs

0 comments on commit 123da16

Please sign in to comment.