-
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.
Merge branch 'master' into ocm-create-share
- Loading branch information
Showing
142 changed files
with
4,127 additions
and
1,142 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
.github | ||
.git | ||
changelog | ||
docker | ||
docs | ||
grpc-tests | ||
tests | ||
toolchain | ||
tools | ||
*.md |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# The test runner source for API tests | ||
APITESTS_COMMITID=804d1777051c3583dfeebae467466f1316fa3583 | ||
APITESTS_COMMITID=6fe404d7c10ae157bfa357179d7d5da620ca6e99 | ||
APITESTS_BRANCH=master | ||
APITESTS_REPO_GIT_URL=https://github.com/owncloud/ocis.git |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Compose | ||
on: | ||
workflow_call: | ||
inputs: | ||
test: | ||
required: true | ||
type: string | ||
image: | ||
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: ${{ inputs.image }} | ||
- name: Test | ||
run: make ${{ inputs.test }} -o docker-revad | ||
env: | ||
REVAD_IMAGE: ${{ inputs.image }} | ||
PARTS: ${{ inputs.parts }} | ||
PART: ${{ inputs.part }} | ||
- name: Clean | ||
if: always() | ||
run: make docker-clean | ||
env: | ||
REVAD_IMAGE: ${{ inputs.image }} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[submodule "docs/themes/docsy"] | ||
path = docs/themes/docsy | ||
url = https://github.com/google/docsy | ||
[submodule "tests/ocis"] | ||
path = tests/ocis | ||
url = https://github.com/owncloud/ocis.git | ||
[submodule "tests/testing"] | ||
path = tests/testing | ||
url = https://github.com/owncloud/testing.git | ||
[submodule "docs/themes/docsy"] | ||
path = docs/themes/docsy | ||
url = https://github.com/google/docsy.git |
Oops, something went wrong.