Skip to content

Commit

Permalink
cli: .gitignore identme; ci: force MinRelSize
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarrier committed Feb 6, 2025
1 parent 13080cb commit 7303b09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
cmake -A win32 .
cmake -A win32 -DCMAKE_BUILD_TYPE=MinSizeRel .
cmake --build .
working-directory: cli
- uses: actions/upload-artifact@v4
Expand All @@ -25,7 +25,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
cmake -A x64 .
cmake -A x64 -DCMAKE_BUILD_TYPE=MinSizeRel .
cmake --build .
working-directory: cli
- uses: actions/upload-artifact@v4
Expand All @@ -37,7 +37,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
cmake -A ARM64 .
cmake -A ARM64 -DCMAKE_BUILD_TYPE=MinSizeRel .
cmake --build .
working-directory: cli
- uses: actions/upload-artifact@v4
Expand Down
1 change: 1 addition & 0 deletions cli/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ _deps/
build/
CMakeCache.txt
CMakeFiles/
identme

0 comments on commit 7303b09

Please sign in to comment.