File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 83
83
84
84
- name : Build FaucK Release
85
85
run : |
86
- CMAKE_OSX_ARCHITECTURES=${{ matrix.CMAKE_OSX_ARCHITECTURES }} make ${{ matrix.os-simple }}
86
+ make ${{ matrix.os-simple }}
87
+ env :
88
+ CMAKE_OSX_ARCHITECTURES : ${{ matrix.CMAKE_OSX_ARCHITECTURES }}
89
+ LIBFAUST_DIR : ${{ matrix.LIBFAUST_DIR }}
87
90
88
91
- uses : actions/upload-artifact@v4
89
92
with :
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ UNAME_M := $(shell uname -m)
14
14
# Set LIBFAUST_DIR based on OS and architecture
15
15
ifeq ($(UNAME_S ) , Darwin)
16
16
ifeq ($(UNAME_M), arm64)
17
- LIBFAUST_DIR : = $(PWD ) /thirdparty/libfaust/darwin-arm64/Release
17
+ LIBFAUST_DIR ? = $(PWD ) /thirdparty/libfaust/darwin-arm64/Release
18
18
else
19
- LIBFAUST_DIR : = $(PWD ) /thirdparty/libfaust/darwin-x64/Release
19
+ LIBFAUST_DIR ? = $(PWD ) /thirdparty/libfaust/darwin-x64/Release
20
20
endif
21
21
else
22
- LIBFAUST_DIR : = $(PWD ) /thirdparty/libfaust/ubuntu-x86_64/Release
22
+ LIBFAUST_DIR ? = $(PWD ) /thirdparty/libfaust/ubuntu-x86_64/Release
23
23
endif
24
24
25
25
CHUG =$(addsuffix $(CHUGIN_SUFFIX ) ,$(CHUGIN_NAME ) )
You can’t perform that action at this time.
0 commit comments