From d22ccd2392a37a764281aefd3dce74f429bf2025 Mon Sep 17 00:00:00 2001 From: Abhijeet Patil Date: Wed, 17 Jan 2024 21:56:43 +0000 Subject: [PATCH] fixing build --- .github/workflows/build_and_test.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index cef1b4edc1..1940ded346 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -182,7 +182,7 @@ jobs: run: cargo deny check --hide-inclusion-graph build-neon: - needs: [ check-permissions, tag, build-buildtools-image, check-codestyle-rust ] + needs: [ check-permissions, tag, build-buildtools-image ] runs-on: [ self-hosted, gen3, large ] container: image: 369495373322.dkr.ecr.eu-central-1.amazonaws.com/build-tools:${{ needs.build-buildtools-image.outputs.build-tools-tag }} diff --git a/Makefile b/Makefile index 0c2d939203..65f40d3895 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ ifeq ($(BUILD_TYPE),release) # Unfortunately, `--profile=...` is a nightly feature CARGO_BUILD_FLAGS += --release CPPFLAGS = - LDFLAGS = + LDFLAGS = else ifeq ($(BUILD_TYPE),debug) PG_CONFIGURE_OPTS = --enable-debug --with-openssl --enable-cassert --enable-depend PG_CFLAGS = -O0 -g3 $(CFLAGS)