Skip to content

Commit

Permalink
Don't build examples twice (#2189)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
glbrntt authored Jan 31, 2025
1 parent eea6b49 commit c51d91b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c51d91b

Please sign in to comment.