aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaulo Gomes <pjbgf@linux.com>2023-04-12 15:16:11 +0100
committerGitHub <noreply@github.com>2023-04-12 15:16:11 +0100
commitb154dcce7059e4e02f8798db158b6a76ffc4a63e (patch)
tree7dd532785871d1a69a721b6e18965ae9caec2097
parentd5b1afd3cc786e56a90cec910b79815ed3b23cc7 (diff)
parentfc0bf7f9ccee01257879565fe36c13306408f843 (diff)
downloadgo-git-b154dcce7059e4e02f8798db158b6a76ffc4a63e.tar.gz
Merge pull request #739 from pjbgf/fix-ci
ci: Fix upstream git build for master branch
-rw-r--r--.github/workflows/git.yml2
-rw-r--r--.gitignore3
-rw-r--r--Makefile2
3 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/git.yml b/.github/workflows/git.yml
index 3a40c0c..638f9bd 100644
--- a/.github/workflows/git.yml
+++ b/.github/workflows/git.yml
@@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v3
- name: Install build dependencies
- run: sudo apt-get install gettext
+ run: sudo apt-get install gettext libcurl4-openssl-dev
- name: Git Build
run: make build-git
diff --git a/.gitignore b/.gitignore
index e8d25f5..361133d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,5 @@ coverage.out
*~
coverage.txt
profile.out
-.tmp/ \ No newline at end of file
+.tmp/
+.git-dist/
diff --git a/Makefile b/Makefile
index f0c1abb..66adc8c 100644
--- a/Makefile
+++ b/Makefile
@@ -41,4 +41,4 @@ test-coverage:
$(GOTEST) -coverprofile=$(COVERAGE_REPORT) -coverpkg=./... -covermode=$(COVERAGE_MODE) ./...
clean:
- rm -rf $(GIT_DIST_PATH) \ No newline at end of file
+ rm -rf $(GIT_DIST_PATH)