-
Notifications
You must be signed in to change notification settings - Fork 6
new service integration library #115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 12 commits
fc6da71
998ae74
949bc86
0f33464
f65d475
4059e07
2abae4d
64f1a8a
7c2dd45
9c1236a
a42a56c
4c8823e
bf4e830
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Build and check image | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
verify-image-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo content | ||
uses: actions/checkout@v2 | ||
- name: ooil version | ||
uses: docker://itisfoundation/ci-service-integration-library:v2.1.25 | ||
with: | ||
args: ooil --version | ||
- name: Assemble docker compose spec | ||
uses: docker://itisfoundation/ci-service-integration-library:v2.1.25 | ||
with: | ||
args: ooil compose | ||
- name: Build all images if multiple | ||
uses: docker://itisfoundation/ci-service-integration-library:v2.1.25 | ||
with: | ||
args: docker compose build |
This file was deleted.
This file was deleted.
JavierGOrdonnez marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
@JavierGOrdonnez removing the
These approaches allow customization without affecting other users. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @pcrespov I have a question. if he replaces the |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
restart-policy: no-restart | ||
settings: | ||
- name: constraints | ||
type: string | ||
value: | ||
- node.platform.os == linux | ||
- name: Resources | ||
type: Resources | ||
value: | ||
Limits: | ||
Limits: # TODO Default resource limits. Change if necessary. | ||
NanoCPUs: 1000000000 # 100% of CPU cycles on 1 CPU | ||
MemoryBytes: 2147483648 # 2 Gigabytes | ||
|
||
MemoryBytes: 2147483648 # 2 Gigabytes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@GitHK ooil still shows up in the "check-image.yml" workflows - but I dont see that generating any issues in the GitHub Actions. Please verify this makes sense.