Skip to content

Commit

Permalink
Don't build examples twice
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 committed Jan 31, 2025
1 parent 2ed95d8 commit 9089c90
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 9089c90

Please sign in to comment.