Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aler9 committed Aug 17, 2024
1 parent 5e003a6 commit df6948f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

.PHONY: $(shell ls)

help:
Expand Down
3 changes: 2 additions & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
RPI_IMAGE = balenalib/raspberry-pi:bullseye

all: build-cross

build-direct:
@$(MAKE) -f Makefile.src

define DOCKERFILE
FROM balenalib/raspberry-pi-debian:stretch
FROM $(RPI_IMAGE)
RUN apt-get update && apt-get install -y --no-install-recommends \
make \
gcc \
Expand Down
5 changes: 2 additions & 3 deletions test/Makefile.src
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

BIN = test-imu

OBJECTS = \
Expand All @@ -16,7 +15,7 @@ LDFLAGS +=
all: $(BIN)

$(BIN): $(OBJECTS)
gcc $(OBJECTS) $(LDFLAGS) -o $@
$(CC) $(OBJECTS) $(LDFLAGS) -o $@

%.o: %.c
gcc $(CFLAGS) -c $< -o $@
$(CC) $(CFLAGS) -c $< -o $@

0 comments on commit df6948f

Please sign in to comment.