Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "yama-build"

on:
workflow_dispatch:
push:
branches:
- "main"
Expand Down Expand Up @@ -56,12 +57,12 @@ jobs:
with:
path: |
C:/Program Files/LLVM
key: llvm-18.1.0
key: llvm-19.1.0

- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "18.1.0"
version: "19.1.0"
cached: ${{ steps.cache-llvm.outputs.cache-hit }}

# - name: Cache Eventlog manifest
Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ int main(int argc, char* argv[]) {
.nargs(0);
program.add_argument("-u", "--uninstall")
.default_value(false)
.help("Uninstall YAMA EventLog manifest. (only do uninstall operaiton)")
.help("Uninstall YAMA EventLog manifest. (only do uninstall operation)")
.nargs(0);
program.add_argument("-s", "--suppress").default_value(false).help("Suppress warning logs").nargs(0);
program.add_argument("-q", "--quiet").default_value(false).help("Suppress all console outputs").nargs(0);
Expand Down Expand Up @@ -251,4 +251,4 @@ int main(int argc, char* argv[]) {
}

return 0;
}
}