From 32efb412dccaa368d3e7842fdbd3032c69125014 Mon Sep 17 00:00:00 2001 From: Kent Ross Date: Sun, 7 Apr 2024 14:55:53 -0700 Subject: [PATCH] bench action: no codegen, but run lscpu it is no longer necessary to fetch codegen tools, as they are no longer needed by default since 1a92464a3d39be45cf5b96af55f211991f70359e and at the level these libraries often operate, the runtime CPU matters. github actions' hosting infrastructure is pretty mysterious, so maybe we can pull the veil back a little bit --- .github/workflows/bench.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 52a64f1..e6ba799 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -47,17 +47,7 @@ jobs: shell: bash run: | - wget "https://github.com/protocolbuffers/protobuf/releases/download/v23.3/protoc-23.3-linux-x86_64.zip" -O protoc.zip - unzip protoc.zip - chmod +x bin/protoc - mv bin/protoc /usr/local/bin - - wget "https://github.com/google/flatbuffers/releases/download/v23.5.26/Linux.flatc.binary.clang++-12.zip" -O flatbuffers - unzip flatbuffers - chmod +x flatc - mv flatc /usr/local/bin - - sudo apt-get install -y capnproto libprotobuf-dev + lscpu git config --global user.name github-actions git config --global user.email github-actions@github.com