Skip to content
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

CERNBox cleanup #4212

Merged
merged 58 commits into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
570554a
removed cernbox plugins
gmgigi96 Sep 25, 2023
de20c6b
code from cernbox fork
gmgigi96 Sep 25, 2023
cd53d26
Revert "removed cernbox plugins"
gmgigi96 Sep 25, 2023
a3f5816
removed cbox specifics pkgs
gmgigi96 Sep 25, 2023
175d18d
cleanup dead code
gmgigi96 Sep 25, 2023
f851226
go mod tidy
gmgigi96 Sep 25, 2023
8d2e305
Merge branch 'master' into cernbox-cleanup
gmgigi96 Sep 25, 2023
d3d66e0
disable integration test for nextcloud driver
gmgigi96 Sep 25, 2023
65e60c9
fix lint
gmgigi96 Sep 25, 2023
7a68c5c
add changelog
gmgigi96 Sep 25, 2023
b80ad4a
fix linter2
gmgigi96 Sep 25, 2023
36b47e4
integration tests to local storage
gmgigi96 Sep 25, 2023
20b058b
fix linter
gmgigi96 Sep 25, 2023
116b3c6
remove litmus-3 test
gmgigi96 Sep 26, 2023
82d632c
apply defaults on public storage provider
gmgigi96 Sep 26, 2023
991ef6b
disable tests for s3ng storage
gmgigi96 Sep 27, 2023
ceb9c25
enable tests on eos storage
gmgigi96 Sep 29, 2023
85f9b24
reduce sleep time on eos setup and add cmd healthcheck to eos storage…
gmgigi96 Sep 29, 2023
2e6a170
enable litmus-2 test
gmgigi96 Sep 29, 2023
65a3374
enable acceptance-1 tests on eos storage
gmgigi96 Sep 29, 2023
3152bed
run acceptance-2 tests
gmgigi96 Oct 2, 2023
618802c
deleted drone tests
gmgigi96 Oct 2, 2023
d593638
Merge branch 'upstream-master' into cernbox-cleanup
gmgigi96 Oct 2, 2023
839f3e0
tests
gmgigi96 Oct 4, 2023
ef225d4
expected failures
gmgigi96 Oct 4, 2023
a76afee
expected failures on EOS storage
gmgigi96 Oct 4, 2023
d9d22d9
trigger ci
gmgigi96 Oct 4, 2023
411c49e
other expected failures
gmgigi96 Oct 4, 2023
dc81d64
optimizations
gmgigi96 Oct 4, 2023
a318db0
fix context when building eos storage img
gmgigi96 Oct 4, 2023
0b1d53c
use revad image with eos
gmgigi96 Oct 4, 2023
47235d3
do not build full eos docker image
gmgigi96 Oct 4, 2023
676d053
fix linter
gmgigi96 Oct 4, 2023
6e0ffd0
t test
gmgigi96 Oct 4, 2023
20af9aa
update setup go action
gmgigi96 Oct 5, 2023
c31c1b0
disable go cache
gmgigi96 Oct 5, 2023
bebbd4c
create temp directory for calens when cloning repository
gmgigi96 Oct 5, 2023
0942414
readded tests
gmgigi96 Oct 5, 2023
961b74d
add test in expected failing
gmgigi96 Oct 5, 2023
4442c25
fix eos script
gmgigi96 Oct 5, 2023
4abf36a
test
gmgigi96 Oct 6, 2023
8c774c2
test2
gmgigi96 Oct 6, 2023
cd7d771
fix docker image from ci
gmgigi96 Oct 6, 2023
f8cf1fa
revert previous commit
gmgigi96 Oct 6, 2023
00e7a40
test3
gmgigi96 Oct 6, 2023
5ea82d3
fix upload artifact
gmgigi96 Oct 6, 2023
b1993c9
cleanup
gmgigi96 Oct 6, 2023
97ecfb4
do not download images
gmgigi96 Oct 6, 2023
ed512c3
fix clean
gmgigi96 Oct 6, 2023
e0b9473
updated linter and fix new linting problems
gmgigi96 Oct 6, 2023
d60c88b
define reva behat test suite
gmgigi96 Oct 6, 2023
0bd1d02
test
gmgigi96 Oct 6, 2023
74eb454
removed expected failing tests
gmgigi96 Oct 6, 2023
55687a8
filter suites
gmgigi96 Oct 6, 2023
b85e131
removed any ref to ocis
gmgigi96 Oct 6, 2023
4dd6e60
fix
gmgigi96 Oct 6, 2023
57a1e76
add debug lines
gmgigi96 Oct 6, 2023
3071868
fix split into parts
gmgigi96 Oct 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .drone.env

This file was deleted.

242 changes: 0 additions & 242 deletions .drone.star

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3.1.0
- name: Setup Go environment
uses: actions/setup-go@v3.3.0
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false
- name: Check changelog
run: make check-changelog
env:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ on:
required: true
type: string
image:
required: true
type: string
download:
type: boolean
submodules:
type: boolean
parts:
Expand All @@ -25,10 +26,11 @@ jobs:
submodules: ${{ inputs.submodules }}
- name: Download image
uses: ishworkh/docker-image-artifact-download@v1
if: inputs.download
with:
image: ${{ inputs.image }}
- name: Test
run: make ${{ inputs.test }} -o docker-revad
run: make ${{ inputs.test }}
env:
REVAD_IMAGE: ${{ inputs.image }}
PARTS: ${{ inputs.parts }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
type: boolean
platforms:
type: string
context:
type: string
default: .
outputs:
image:
value: ${{ jobs.docker.outputs.image }}
Expand Down Expand Up @@ -40,7 +43,7 @@ jobs:
uses: docker/build-push-action@v3
id: build
with:
context: .
context: ${{ inputs.context }}
file: ${{ inputs.file }}
tags: ${{ inputs.tags }}
load: ${{ inputs.load }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3.1.0
- name: Setup Go environment
uses: actions/setup-go@v3.3.0
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false
- name: Run linters
run: make lint
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ jobs:
uses: actions/checkout@v3
- name: Setup Go environment
id: go
uses: actions/setup-go@v3.3.0
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false
- name: Make distribution
run: make dist
env:
Expand Down
Loading