Skip to content

Commit a8aeb27

Browse files
committed
github: fix workflow
1 parent 2bb5450 commit a8aeb27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,14 @@ jobs:
1616
- name: install
1717
run: |
1818
apk update
19-
apk add git python3 make gcc linux-headers libc-dev py-pip node npm
19+
apk add git python3 make gcc linux-headers libc-dev py-pip
2020
python3 -m venv .venv
2121
source .venv/bin/activate
2222
pip install -r requirements.txt
2323
- name: Fix permission
2424
run: git config --global --add safe.directory $PWD
2525
- name: test
2626
run: go test -v ./...
27-
- name: build-apps
28-
run: make build-apps
2927
- name: unittest
3028
run: |
3129
source .venv/bin/activate

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ overlordd: deps
4545
ln -s $(WEBROOT_DIR) $(BIN)/webroot
4646

4747
ghost: deps
48+
GOBIN=$(BIN) $(GO) install $(LDFLAGS) $(CURDIR)/cmd/ghost
49+
4850
@echo "Building ghost for architectures: $(GHOST_ARCHS)"
4951
@for arch in $(GHOST_ARCHS); do \
5052
echo "Building for $$arch ..."; \

0 commit comments

Comments
 (0)