Skip to content

Commit

Permalink
Merge pull request #753 from AndreKurait/FixFetchMigrationBuild
Browse files Browse the repository at this point in the history
Fix FetchMigration build
  • Loading branch information
AndreKurait authored Jun 21, 2024
2 parents 2dac128 + 4ed4450 commit d1e3865
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,16 @@ jobs:
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

fetch-migration-docker-build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./FetchMigration
steps:
- uses: actions/checkout@v4
- name: Build Docker Image
run: docker build -t migrations/fetch-migration -f Dockerfile .

all-ci-checks-pass:
needs:
- cdk-tests
Expand All @@ -181,7 +191,9 @@ jobs:
- python-e2e-tests
- python-lint
- python-tests
- fetch-migration-docker-build
runs-on: ubuntu-latest
steps:
- run: |
echo '## :heavy_check_mark: All continous integration checks pass' >> $GITHUB_STEP_SUMMARY
2 changes: 1 addition & 1 deletion FetchMigration/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM opensearchproject/data-prepper:2.5.0
COPY python/Pipfile .
COPY python/Pipfile python/Pipfile.lock ./

# Install dependencies to local user directory
RUN apt -y update
Expand Down

0 comments on commit d1e3865

Please sign in to comment.