-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate ocisIntegrationTests and s3ngIntegrationTests to GitHub Actions
- Loading branch information
1 parent
2e0d2b9
commit 6a28e60
Showing
43 changed files
with
473 additions
and
1,357 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Compose | ||
on: | ||
workflow_call: | ||
inputs: | ||
test: | ||
required: true | ||
type: string | ||
submodules: | ||
type: boolean | ||
parts: | ||
type: number | ||
part: | ||
type: number | ||
|
||
jobs: | ||
compose: | ||
runs-on: self-hosted | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: ${{ inputs.submodules }} | ||
- name: Download image | ||
uses: ishworkh/docker-image-artifact-download@v1 | ||
with: | ||
image: revad:test | ||
- name: Test | ||
uses: isbang/[email protected] | ||
with: | ||
compose-file: ./tests/docker/docker-compose.yml | ||
up-flags: --force-recreate --always-recreate-deps --build --abort-on-container-exit -V --remove-orphans --exit-code-from ${{ inputs.test }} | ||
down-flags: --rmi all -v --remove-orphans | ||
services: ${{ inputs.test }} | ||
env: | ||
REVAD_IMAGE: revad:test | ||
PARTS: ${{ inputs.parts }} | ||
PART: ${{ inputs.part }} |
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
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
Oops, something went wrong.