Skip to content

Commit

Permalink
Merge pull request #61 from jwendell/gcc9
Browse files Browse the repository at this point in the history
Use gcc 9
  • Loading branch information
maistra-bot committed Jan 21, 2021
2 parents a1c622a + f62b10a commit 4df1ba9
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 293 deletions.
5 changes: 0 additions & 5 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

49 changes: 0 additions & 49 deletions .github/ISSUE_TEMPLATE/non--crash-security--bug.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/other.md

This file was deleted.

46 changes: 0 additions & 46 deletions .github/stale.yml

This file was deleted.

55 changes: 0 additions & 55 deletions .github/workflows/codeql-daily.yml

This file was deleted.

63 changes: 0 additions & 63 deletions .github/workflows/codeql-push.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/get_build_targets.sh

This file was deleted.

5 changes: 4 additions & 1 deletion maistra/run-ci.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#!/bin/bash

set -e
set -u
set -o pipefail
set -x

source /opt/rh/gcc-toolset-9/enable

ARCH=$(uname -p)
if [ "${ARCH}" = "ppc64le" ]; then
ARCH="ppc"
Expand All @@ -16,6 +17,7 @@ export BUILD_SCM_STATUS="SHA=${PULL_PULL_SHA:-undefined}"

# Build
time bazel build \
--incompatible_linkopts_to_linklibs \
--local_ram_resources=12288 \
--local_cpu_resources=4 \
--jobs=4 \
Expand All @@ -27,6 +29,7 @@ bazel-bin/source/exe/envoy-static --version

# Run tests
time bazel test \
--incompatible_linkopts_to_linklibs \
--local_ram_resources=12288 \
--local_cpu_resources=4 \
--jobs=4 \
Expand Down
19 changes: 10 additions & 9 deletions test/integration/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -1428,15 +1428,16 @@ envoy_cc_fuzz_test(
deps = [":h2_fuzz_persistent_lib"],
)

envoy_cc_fuzz_test(
name = "h2_capture_direct_response_fuzz_test",
srcs = ["h2_capture_direct_response_fuzz_test.cc"],
corpus = "h2_corpus",
deps = [
":h2_fuzz_lib",
"@envoy_api//envoy/extensions/filters/network/http_connection_manager/v3:pkg_cc_proto",
],
)
# FIXME: https://issues.redhat.com/browse/MAISTRA-2100
# envoy_cc_fuzz_test(
# name = "h2_capture_direct_response_fuzz_test",
# srcs = ["h2_capture_direct_response_fuzz_test.cc"],
# corpus = "h2_corpus",
# deps = [
# ":h2_fuzz_lib",
# "@envoy_api//envoy/extensions/filters/network/http_connection_manager/v3:pkg_cc_proto",
# ],
# )

envoy_cc_fuzz_test(
name = "h2_capture_direct_response_persistent_fuzz_test",
Expand Down

0 comments on commit 4df1ba9

Please sign in to comment.