Skip to content

Commit 7156f6a

Browse files
committed
CI - Adding ARCH_TARGET (macOS)
1 parent 4a67f91 commit 7156f6a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,16 @@ jobs:
5555
if: ${{ !cancelled() }}
5656
run: make ARCH_TARGET=${{ matrix.arch }}
5757
- name: Build TLS Debug Target
58-
run: make WEBUI_USE_TLS=1 debug
58+
run: make ARCH_TARGET=${{ matrix.arch }} WEBUI_USE_TLS=1 debug
5959
- name: Build TLS Release Target
60-
run: make WEBUI_USE_TLS=1
60+
run: make ARCH_TARGET=${{ matrix.arch }} WEBUI_USE_TLS=1
6161
- name: Build examples
6262
run: |
6363
examples_base_dir=$(pwd)/examples/C
6464
for example in $(find $examples_base_dir/* -maxdepth 0 -type d); do
6565
echo "> $example"
6666
cd $example || (exit_code=1 && continue)
67-
if ! make; then
67+
if ! make ARCH_TARGET=${{ matrix.arch }}; then
6868
echo "Failed to build '$example'"
6969
exit_code=1
7070
continue

0 commit comments

Comments
 (0)