From 9089c9016488c1a53ad83680e27de06725136b89 Mon Sep 17 00:00:00 2001 From: George Barnett Date: Fri, 31 Jan 2025 15:53:57 +0000 Subject: [PATCH] Don't build examples twice Motivation: The CI for examples builds them in the setup stage and the actual run stages. That's just a silly oversight. Modifications: - Don't build them during set. Result: Examples don't build twice in CI --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 29a9bd5e3..34fbceeea 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -42,7 +42,7 @@ jobs: MATRIX_LINUX_5_9_ENABLED: false MATRIX_LINUX_5_10_ENABLED: false MATRIX_LINUX_COMMAND: "./dev/build-examples.sh" - MATRIX_LINUX_SETUP_COMMAND: "apt update && apt install -y protobuf-compiler && ./dev/build-examples.sh" + MATRIX_LINUX_SETUP_COMMAND: "apt update && apt install -y protobuf-compiler" examples-matrix: name: Examples