[SDKS-8921] Proxy Large Segments support #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docker | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'push' && github.run_number || github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
docker: | |
name: Build Docker image | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
app: | |
- synchronizer | |
- proxy | |
fips_mode: | |
- enabled | |
- disabled | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup QEMU | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: amd64,arm64 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Artifactory | |
if: ${{ github.event_name == 'push' }} | |
uses: docker/login-action@v3 | |
with: | |
registry: splitio-docker.jfrog.io | |
username: ${{ secrets.ARTIFACTORY_DOCKER_USER }} | |
password: ${{ secrets.ARTIFACTORY_DOCKER_PASS }} | |
- name: Get version | |
run: echo "VERSION=$(awk '/^const Version/{gsub(/"/, "", $4); print $4}' splitio/version.go)" >> $GITHUB_ENV | |
- name: Docker Build and Push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: docker/Dockerfile.${{ matrix.app }} | |
push: ${{ github.event_name == 'push' }} | |
platforms: linux/amd64,linux/arm64 | |
tags: splitio-docker.jfrog.io/split-${{ matrix.app }}${{ matrix.fips_mode == 'enabled' && '-fips' || ''}}:${{ env.VERSION }},splitio-docker.jfrog.io/split-${{ matrix.app }}${{ matrix.fips_mode == 'enabled' && '-fips' || '' }}:latest | |
build-args: | | |
FIPS_MODE=${{ matrix.fips_mode }} | |
lacework: | |
name: Scan Docker image | |
if: ${{ github.event_name == 'pull_request' }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
app: | |
- synchronizer | |
- proxy | |
fips_mode: | |
- enabled | |
- disabled | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get version | |
run: echo "VERSION=$(awk '/^const Version/{gsub(/"/, "", $4); print $4}' splitio/version.go)" >> $GITHUB_ENV | |
- name: Docker Build and Push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: docker/Dockerfile.${{ matrix.app }} | |
push: false | |
tags: splitio-docker.jfrog.io/split-${{ matrix.app }}${{ matrix.fips_mode == 'enabled' && '-fips' || ''}}:${{ env.VERSION }} | |
build-args: | | |
FIPS_MODE=${{ matrix.fips_mode }} | |
- name: Scan container using Lacework | |
uses: lacework/lw-scanner-action@v1.4.1 | |
with: | |
LW_ACCOUNT_NAME: ${{ secrets.LW_ACCOUNT_NAME }} | |
LW_ACCESS_TOKEN: ${{ secrets.LW_ACCESS_TOKEN }} | |
IMAGE_NAME: splitio-docker.jfrog.io/split-${{ matrix.app }}${{ matrix.fips_mode == 'enabled' && '-fips' || ''}} | |
IMAGE_TAG: ${{ env.VERSION }} | |
SAVE_RESULTS_IN_LACEWORK: true |