Skip to content

Commit

Permalink
chore(ci): skip ada compilation in amazon-linux-2
Browse files Browse the repository at this point in the history
  • Loading branch information
Water-Melon committed Sep 6, 2024
1 parent b861d1f commit 6605cac
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/matrix-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ build-packages:
package: rpm
package-type: aws2
check-manifest-suite: amazonlinux-2-amd64
# simdjson doesn't compile on gcc7.3.1 (needs 7.4)
bazel-args: --platforms=//:aws2-crossbuild-x86_64 --//:simdjson=False
# ada and simdjson don't compile on gcc7.3.1 (needs 7.4)
bazel-args: --platforms=//:aws2-crossbuild-x86_64 --//:simdjson=False --//:ada=False
- label: amazonlinux-2023
image: amazonlinux:2023
package: rpm
Expand Down
14 changes: 14 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,20 @@ config_setting(
visibility = ["//visibility:public"],
)

# --//:ada=true
bool_flag(
name = "ada",
build_setting_default = True,
)

config_setting(
name = "ada_flag",
flag_values = {
":ada": "true",
},
visibility = ["//visibility:public"],
)

# --//:licensing=false
bool_flag(
name = "licensing",
Expand Down

0 comments on commit 6605cac

Please sign in to comment.