Skip to content

Commit

Permalink
test with: submodules: 'true'
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardo-gnosis committed Aug 29, 2024
1 parent 789d081 commit 8e06fcd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:

- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'

- name: Get Organization Name
id: org_name
Expand Down
14 changes: 2 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,17 @@

GOCC=go
MKDIR_P=mkdir -p
GIT_SUBM=git submodule

BIN_PATH=./build
BIN="./build/goteth"

.PHONY: check build dependencies install run clean
.PHONY: check build install run clean

build:
$(GOCC) get
$(GOCC) build -o $(BIN)

dependencies:
$(GIT_SUBM) update --init
cd go-relay-client && git checkout "origin/goteth" && git pull origin goteth
cd ..

install:
$(GOCC) install
$(GOCC) download

clean:
rm -r $(BIN_PATH)


rm -r $(BIN_PATH)

0 comments on commit 8e06fcd

Please sign in to comment.