From 5e842018a31badf7c583b4132e084441a6101e21 Mon Sep 17 00:00:00 2001 From: Toby Dylan Hocking Date: Fri, 18 Sep 2026 09:49:44 -0400 Subject: [PATCH 1/5] install libcurl --- .github/workflows/performance-tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/performance-tests.yml b/.github/workflows/performance-tests.yml index 0c42513e8c..125d10645b 100644 --- a/.github/workflows/performance-tests.yml +++ b/.github/workflows/performance-tests.yml @@ -21,4 +21,7 @@ jobs: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} repo_token: ${{ secrets.GITHUB_TOKEN }} steps: + - name: install libcurl + run: sudo apt install libcurl4-openssl-dev + shell: bash - uses: Anirban166/Autocomment-atime-results@v1.4.3 \ No newline at end of file From d662a1d9ab27fbca294414eeb9cee8ddb68f67b6 Mon Sep 17 00:00:00 2001 From: Toby Dylan Hocking Date: Fri, 18 Sep 2026 09:54:02 -0400 Subject: [PATCH 2/5] re-run ci for change to yml --- .github/workflows/performance-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/performance-tests.yml b/.github/workflows/performance-tests.yml index 125d10645b..2ac916d6f1 100644 --- a/.github/workflows/performance-tests.yml +++ b/.github/workflows/performance-tests.yml @@ -10,6 +10,7 @@ on: - 'R/**' - 'src/**' - '.ci/atime/**' + - '.github/workflows/performance-tests.yml' workflow_dispatch: jobs: From 3d1b10efd1daf51ccdd61ebb921927b3ea9eed9b Mon Sep 17 00:00:00 2001 From: Toby Dylan Hocking Date: Fri, 18 Sep 2026 11:24:54 -0400 Subject: [PATCH 3/5] curl? --- .github/workflows/performance-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/performance-tests.yml b/.github/workflows/performance-tests.yml index 2ac916d6f1..4a71e0e4b2 100644 --- a/.github/workflows/performance-tests.yml +++ b/.github/workflows/performance-tests.yml @@ -23,6 +23,8 @@ jobs: repo_token: ${{ secrets.GITHUB_TOKEN }} steps: - name: install libcurl - run: sudo apt install libcurl4-openssl-dev + run: | + apt search libcurl + sudo apt install curl shell: bash - uses: Anirban166/Autocomment-atime-results@v1.4.3 \ No newline at end of file From 5bb1442956531379e51d4f1c346120164c473ca7 Mon Sep 17 00:00:00 2001 From: Toby Dylan Hocking Date: Fri, 18 Sep 2026 11:28:42 -0400 Subject: [PATCH 4/5] dev? --- .github/workflows/performance-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/performance-tests.yml b/.github/workflows/performance-tests.yml index 4a71e0e4b2..734e2b5dd3 100644 --- a/.github/workflows/performance-tests.yml +++ b/.github/workflows/performance-tests.yml @@ -25,6 +25,6 @@ jobs: - name: install libcurl run: | apt search libcurl - sudo apt install curl + sudo apt install libcurl4-openssl-dev shell: bash - uses: Anirban166/Autocomment-atime-results@v1.4.3 \ No newline at end of file From 0be563255968f70b362c9da3fbc6d8417ab488e1 Mon Sep 17 00:00:00 2001 From: Ivan K Date: Sat, 19 Sep 2026 00:02:51 +0300 Subject: [PATCH 5/5] refresh package lists before installing libcurl --- .github/workflows/performance-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/performance-tests.yml b/.github/workflows/performance-tests.yml index 734e2b5dd3..7e4a88a05d 100644 --- a/.github/workflows/performance-tests.yml +++ b/.github/workflows/performance-tests.yml @@ -24,7 +24,7 @@ jobs: steps: - name: install libcurl run: | - apt search libcurl - sudo apt install libcurl4-openssl-dev + sudo apt update + sudo apt -y install libcurl4-openssl-dev shell: bash - uses: Anirban166/Autocomment-atime-results@v1.4.3 \ No newline at end of file