Skip to content

Commit

Permalink
[CI] Updated Mac CIS script.
Browse files Browse the repository at this point in the history
- Upload static lib version as CIS artifact to simplify example startup.
- Use new CompileMetalToMetallib.sh script to bundle default.metallib with apps.
  • Loading branch information
LukasBanana committed Sep 10, 2024
1 parent 1abdd1b commit 42667bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,14 @@ jobs:
- name: Build
run: |
cmake --build ${{github.workspace}}/macOS-x64 --config ${{ matrix.config }}
scripts/CompileMetalToMetallib.sh macosx "${{ github.workspace }}/macOS-x64/build" -v
CURRENT_TIME=$(date)
echo "LLGL built with Xcode for macOS on $CURRENT_TIME." > ${{ env.README }}
echo "Place at root of LLGL repository to run examples and testbed." >> ${{ env.README }}
- name: Upload Binaries
uses: actions/upload-artifact@v4
if: matrix.lib == 'Shared' && matrix.config == 'Release'
if: matrix.lib == 'Static' && matrix.config == 'Release'
with:
name: LLGL-macOS-${{ matrix.config }}-x86_64
path: |
Expand Down

0 comments on commit 42667bb

Please sign in to comment.