Skip to content

Commit

Permalink
add -j4 flag
Browse files Browse the repository at this point in the history
Signed-off-by: MregXN <mregxn@gmail.com>
  • Loading branch information
MregXN committed Nov 29, 2023
1 parent 4d626ca commit 6a5ab3e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dapr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -334,12 +334,12 @@ jobs:
- name: Build Dapr and its Docker images
if: env.TEST_PREFIX != ''
run: |
make build
make build -j4
if [ "${{ env.TARGET_OS }}" = "linux" ] && [ "${{ env.TARGET_ARCH }}" != "arm" ]; then
# For Linux, we use images based on Mariner
DOCKERFILE=Dockerfile-mariner make docker-build
DOCKERFILE=Dockerfile-mariner make docker-build -j4
else
make docker-build
make docker-build -j4
fi
shell: bash
- name: Wait for Azure Container Registry deployment
Expand All @@ -362,15 +362,15 @@ jobs:
run: |
if [ "${{ env.TARGET_OS }}" = "linux" ] && [ "${{ env.TARGET_ARCH }}" != "arm" ]; then
# For Linux, we use images based on Mariner
DOCKERFILE=Dockerfile-mariner make docker-push
DOCKERFILE=Dockerfile-mariner make docker-push -j4
else
make docker-push
make docker-push -j4
fi
shell: bash
- name: Build and push E2E test apps
if: env.TEST_PREFIX != ''
run: |
make build-push-e2e-app-all
make build-push-e2e-app-all -j4
shell: bash
- name: Update PR comment for success
if: success() && env.PR_NUMBER != ''
Expand Down

0 comments on commit 6a5ab3e

Please sign in to comment.