Skip to content

Commit

Permalink
add unstable fips builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mredolatti committed Feb 21, 2024
1 parent 9bb7416 commit 0bc0dab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
context: .
file: docker/Dockerfile.${{ matrix.mode }}
push: true
tags: splitio-docker.jfrog.io/split-${{ matrix.mode }}:${{ env.VERSION }}
tags: splitio-docker.jfrog.io/split-${{ matrix.mode }}${{ matrix.fips-mode == "enabled" && "-fips" || ""}}:${{ env.VERSION }}
build-args: |
FIPS_MODE=${{ matrix.fips-mode }}
3 changes: 2 additions & 1 deletion .github/workflows/unstable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
strategy:
matrix:
mode: [synchronizer, proxy]
fips-mode: [enabled, disabled]
steps:
- name: Login to Artifactory
uses: docker/login-action@v2
Expand All @@ -31,4 +32,4 @@ jobs:
context: .
file: docker/Dockerfile.${{ matrix.mode }}
push: true
tags: splitio-docker-dev.jfrog.io/split-${{ matrix.mode }}:${{ env.SHORT_SHA }}
tags: splitio-docker-dev.jfrog.io/split-${{ matrix.mode }}${{ matrix.fips-mode == "enabled" && "-fips" || ""}}:${{ env.SHORT_SHA }}

0 comments on commit 0bc0dab

Please sign in to comment.