From da83d840b79f01e688f0eb6d00b50011278ab480 Mon Sep 17 00:00:00 2001 From: Bryan Moffatt Date: Wed, 29 Jun 2022 20:36:36 -0700 Subject: [PATCH 1/4] Update workflow.yml --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 7abad42..4c04450 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - name: Install Dependencies - run: sudo apt-get install -y clang-tidy libcurl4-openssl-dev + run: apt-get update -y && apt-get install -y clang-tidy libcurl4-openssl-dev - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. From 6548c1dd8355e476c065964f1b6b5e4a1a1ee870 Mon Sep 17 00:00:00 2001 From: Bryan Moffatt Date: Wed, 29 Jun 2022 20:37:31 -0700 Subject: [PATCH 2/4] Update workflow.yml --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 4c04450..ecd067a 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - name: Install Dependencies - run: apt-get update -y && apt-get install -y clang-tidy libcurl4-openssl-dev + run: sudo apt-get update -y && sudo apt-get install -y clang-tidy libcurl4-openssl-dev - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. From 84517c5aee4d0ab1dbc99833b27dcef8f39b4327 Mon Sep 17 00:00:00 2001 From: Bryan Moffatt Date: Wed, 29 Jun 2022 20:40:10 -0700 Subject: [PATCH 3/4] Update workflow.yml --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index ecd067a..7abad42 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - name: Install Dependencies - run: sudo apt-get update -y && sudo apt-get install -y clang-tidy libcurl4-openssl-dev + run: sudo apt-get install -y clang-tidy libcurl4-openssl-dev - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. From a5d20ea0d3fe9fe27d0d53228383e48c37f5f86e Mon Sep 17 00:00:00 2001 From: Bryan Moffatt Date: Wed, 29 Jun 2022 20:41:09 -0700 Subject: [PATCH 4/4] Update workflow.yml --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 7abad42..334e2f8 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - name: Install Dependencies - run: sudo apt-get install -y clang-tidy libcurl4-openssl-dev + run: sudo apt-get update && sudo apt-get install -y clang-tidy libcurl4-openssl-dev - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.