From 023f2f4d30d2de37bf7daaa31a6d54ed994250c7 Mon Sep 17 00:00:00 2001 From: Durok <43138030+FreeDurok@users.noreply.github.com> Date: Fri, 25 Jul 2025 10:08:04 +0200 Subject: [PATCH 1/4] Update build.yaml --- .github/workflows/build.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b6b4719..04bfa86 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,6 +1,7 @@ name: "yama-build" on: + workflow_dispatch: push: branches: - "main" From ab34d51f2710ff03b9fb5a7974a815ca71f7968c Mon Sep 17 00:00:00 2001 From: Durok <43138030+FreeDurok@users.noreply.github.com> Date: Fri, 25 Jul 2025 10:15:02 +0200 Subject: [PATCH 2/4] Update build.yaml --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 04bfa86..31da128 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -62,7 +62,7 @@ jobs: - name: Install LLVM and Clang uses: KyleMayes/install-llvm-action@v2 with: - version: "18.1.0" + version: "19.0.0" cached: ${{ steps.cache-llvm.outputs.cache-hit }} # - name: Cache Eventlog manifest From 3cb50dbae90d2ced2b467c0cc57de4270b22f98b Mon Sep 17 00:00:00 2001 From: Durok <43138030+FreeDurok@users.noreply.github.com> Date: Fri, 25 Jul 2025 10:19:29 +0200 Subject: [PATCH 3/4] Update build.yaml --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 31da128..a3714d0 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -57,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: "19.0.0" + version: "19.1.0" cached: ${{ steps.cache-llvm.outputs.cache-hit }} # - name: Cache Eventlog manifest From db51a44eeebf6677dd494d0cd06a197a53b9bf43 Mon Sep 17 00:00:00 2001 From: Durok <43138030+FreeDurok@users.noreply.github.com> Date: Fri, 25 Jul 2025 10:27:55 +0200 Subject: [PATCH 4/4] Update main.cpp - typo fix Just typo fix --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 2906bcd..1241344 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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); @@ -251,4 +251,4 @@ int main(int argc, char* argv[]) { } return 0; -} \ No newline at end of file +}