add dockerhost
Some checks failed
Build Heavy Service / build-and-package (push) Failing after 10m27s
Some checks failed
Build Heavy Service / build-and-package (push) Failing after 10m27s
This commit is contained in:
@@ -5,9 +5,9 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
file_count:
|
file_count:
|
||||||
description: 'Number of files to generate (controls build time)'
|
description: "Number of files to generate (controls build time)"
|
||||||
required: false
|
required: false
|
||||||
default: '10000'
|
default: "10000"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
@@ -17,6 +17,8 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build-and-package:
|
build-and-package:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
DOCKER_HOST: tcp://localhost:2376
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout source code
|
- name: Checkout source code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@@ -36,4 +38,4 @@ jobs:
|
|||||||
# We set a high file count to ensure the build takes a significant amount of time
|
# We set a high file count to ensure the build takes a significant amount of time
|
||||||
# to simulate a heavy workload in the CI system.
|
# to simulate a heavy workload in the CI system.
|
||||||
build-args: |
|
build-args: |
|
||||||
FILE_COUNT=${{ inputs.file_count || '10000' }}
|
FILE_COUNT=${{ inputs.file_count || '10000' }}
|
||||||
|
|||||||
Reference in New Issue
Block a user