From 03552e13a437f2c8e179a1cbdc8b8203525e72fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sat, 4 Jan 2025 14:36:24 +0100 Subject: [PATCH] ci: remove windows linker flag, use a whitelist for git add --- .github/workflows/extensions.yml | 2 +- extensions/Makefile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/extensions.yml b/.github/workflows/extensions.yml index f64f4b3b..9cc1eaf2 100644 --- a/.github/workflows/extensions.yml +++ b/.github/workflows/extensions.yml @@ -84,7 +84,7 @@ jobs: cd extensions git config --local user.email "github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" - git add lib/ + git add lib/*.{so,dylib,dll} lib/arm/*.{so,dylib} git commit -m "Auto-build: Update extensions [skip ci]" || echo "No changes to commit" - name: Push files diff --git a/extensions/Makefile b/extensions/Makefile index a793a178..1f61398a 100644 --- a/extensions/Makefile +++ b/extensions/Makefile @@ -6,7 +6,6 @@ CCFLAGS += -shared -Os ifeq ($(OS),Windows_NT) OUTPUT = lib/noattach.dll - CCFLAGS += -Wl,--exclude-libs,ALL CC = clang else UNAME := $(shell uname)