1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 03:34:03 +00:00

ci: remove windows linker flag, use a whitelist for git add

This commit is contained in:
Samuel Štancl 2025-01-04 14:36:24 +01:00
parent e7292c6d38
commit 03552e13a4
2 changed files with 1 additions and 2 deletions

View file

@ -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

View file

@ -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)