diff options
author | Nick White <git@njw.name> | 2021-06-22 13:51:45 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2021-06-22 14:27:21 +0100 |
commit | 48020c6e284efe49de173d414842b916de9845a7 (patch) | |
tree | c946be71744a46ad4e684adbf3aa6a0c2b2999bd /roles | |
parent | 82fa78799faa363a018da364576d97bb76c6a2cb (diff) |
Have updatepipeline script only compile and install bookpipeline
As the rescribe tool now does embed stuff, it won't build until a
go generate call is done. So rather than unnecessarily building
all bookpipeline tools, which would fail now, just do bookpipeline.
Diffstat (limited to 'roles')
-rw-r--r-- | roles/pipeliner/tasks/pipeline.yml | 2 | ||||
-rw-r--r-- | roles/pipeliner/templates/updatepipeline.j2 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/roles/pipeliner/tasks/pipeline.yml b/roles/pipeliner/tasks/pipeline.yml index d6674b1..9572c60 100644 --- a/roles/pipeliner/tasks/pipeline.yml +++ b/roles/pipeliner/tasks/pipeline.yml @@ -20,7 +20,7 @@ - name: Get and build bookpipeline and dependencies command: - cmd: go install ./... + cmd: go install ./cmd/bookpipeline chdir: /home/{{ ansible_user }}/src/bookpipeline become: no diff --git a/roles/pipeliner/templates/updatepipeline.j2 b/roles/pipeliner/templates/updatepipeline.j2 index efe04e1..511bd2a 100644 --- a/roles/pipeliner/templates/updatepipeline.j2 +++ b/roles/pipeliner/templates/updatepipeline.j2 @@ -4,7 +4,7 @@ t="/home/{{ ansible_user }}/trainings" cd "$s/bookpipeline" && \ git pull && \ -go install ./... && \ +go install ./cmd/bookpipeline && \ sudo cp "$HOME/go/bin/bookpipeline" /usr/local/bin/ || exit 1 cd "$t" && git pull && \ |