Skip to content

Commit

Permalink
👻 setting everything to use the release branch correctly
Browse files Browse the repository at this point in the history
Signed-off-by: Shawn Hurley <shawn@hurley.page>
  • Loading branch information
shawn-hurley authored and mansam committed Apr 30, 2024
1 parent 53081b5 commit e8d5ce2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: tackle2-addon-analyzer CI

on:
workflow_dispatch:
push:
pull_request:

Expand Down Expand Up @@ -28,3 +29,4 @@ jobs:
uses: konveyor/ci/.github/workflows/global-ci.yml@main
with:
component_name: tackle2-addon-analyzer
api_tests_ref: release-0.3
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM quay.io/konveyor/windup-shim:latest as shim
FROM quay.io/konveyor/windup-shim:release-0.3 as shim

FROM registry.access.redhat.com/ubi9/go-toolset:latest as addon
ENV GOPATH=$APP_ROOT
COPY --chown=1001:0 . .
RUN make cmd
RUN make build

FROM quay.io/konveyor/analyzer-lsp:latest
FROM quay.io/konveyor/analyzer-lsp:release-0.3
USER root
RUN echo -e "[centos9]" \
"\nname = centos9" \
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ AddonDir ?= /tmp/addon
cmd: fmt vet
go build -ldflags="-w -s" -o ${CMD} github.com/konveyor/tackle2-addon-analyzer/cmd

build:
go build -ldflags="-w -s" -o ${CMD} github.com/konveyor/tackle2-addon-analyzer/cmd

image-docker:
docker build -t ${IMG} .

Expand Down

0 comments on commit e8d5ce2

Please sign in to comment.