From ee8ec3c46d356565e769cf8f5540b0cbc357059a Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Wed, 11 Sep 2024 15:09:42 -0300 Subject: [PATCH 1/2] [BUGFIX] [CONFIG] [Makefile] /usr/local/share/vcpkg/.vcpkg-root: error: Failed to take the filesystem lock Device or resource busy https://github.com/microsoft/vcpkg/issues/22129#issuecomment-998467949 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f00b36d..0dcd1af 100644 --- a/Makefile +++ b/Makefile @@ -56,8 +56,8 @@ build: dependencies cmake --build build --verbose dependencies: - vcpkg integrate install - vcpkg install + vcpkg --x-wait-for-lock integrate install + vcpkg --x-wait-for-lock install lint/markdown: markdownlint '**/*.md' && echo '✔ Your code looks good.' From b78b8ae7e4ed258016491ed9e10abaac6e0bffd5 Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Wed, 11 Sep 2024 15:18:14 -0300 Subject: [PATCH 2/2] [CONFIG] [Github Actions] Better actions naming --- .github/workflows/sonarcloud.yml | 2 +- .github/workflows/yamllint.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index dcd2fed..b385509 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -10,7 +10,7 @@ on: # yamllint disable-line rule:truthy jobs: build: - name: Build + name: SonarCloud build and run sonar-scanner runs-on: ubuntu-latest env: # Directory where build-wrapper output will be placed diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index 58d810f..e8800ab 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -12,6 +12,7 @@ on: # yamllint disable-line rule:truthy jobs: lint: + name: YAML lint runs-on: ubuntu-latest steps: - name: Checkout repository