Skip to content

Commit

Permalink
Retry Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdhilahiRWabwire committed Jan 11, 2025
1 parent a6d0a94 commit 47c736d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: go env

- name: List Packages or Modules
run: go list
run: go list ./server

- name: Report Mistakes in Package
run: go vet ./server
Expand Down
5 changes: 5 additions & 0 deletions data-interchange.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,9 @@ RUN echo 'export PATH="$PATH:/usr/local/include"' >> ~/.bashrc && echo 'export P
RUN echo 'export PATH="$PATH:/usr/bin/go/bin"' >> ~/.bashrc && echo 'export PATH="$PATH:/usr/bin/go/bin"' >> /etc/skel/.bashrc
RUN wget https://go.dev/dl/go1.23.4.linux-amd64.tar.gz && tar --extract --file ./*.gz --verbose
RUN mv ./go1.23.4.linux-amd64/go /usr/bin
RUN go env
RUN go list ./server
RUN go vet ./server
RUN go fix ./server
RUN go fmt ./server
RUN GOOS=linux GOARCH=amd64 go build -o ./binary/htdinet ./server/source/main.go

0 comments on commit 47c736d

Please sign in to comment.