Pass lock metadata on uploads + use upstream EOS GRPC bindings #2607
Workflow file for this run
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
name: Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
integration: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go environment | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
cache: false | |
- name: Test integration | |
run: make test-integration | |
env: | |
REDIS_ADDRESS: redis:6379 | |
SQL_USERNAME: root | |
SQL_PASSWORD: my-secret-pw | |
SQL_ADDRESS: localhost:3306 | |
SQL_DBNAME: reva | |
services: | |
redis: | |
image: registry.cern.ch/docker.io/webhippie/redis | |
mysql: | |
image: mysql | |
ports: | |
- 3306:3306 | |
env: | |
MYSQL_ROOT_PASSWORD: my-secret-pw | |
MYSQL_DATABASE: reva | |
go: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go environment | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
cache: false | |
- name: Test | |
run: make test-go | |
env: | |
COVER_PROFILE: ${{ github.event_name == 'push' && 'coverage.out' || '' }} | |
- name: Run codacy-coverage-reporter | |
uses: codacy/codacy-coverage-reporter-action@v1 | |
if: github.event_name == 'push' | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
coverage-reports: coverage.out | |
force-coverage-parser: go | |
docker: | |
strategy: | |
fail-fast: false | |
matrix: | |
file: [docker/Dockerfile.reva, docker/Dockerfile.revad-eos, docker/Dockerfile.revad-ceph] | |
uses: ./.github/workflows/docker.yml | |
with: | |
file: ${{ matrix.file }} | |
docker-revad: | |
name: docker (docker/Dockerfile.revad) | |
uses: ./.github/workflows/docker.yml | |
with: | |
file: docker/Dockerfile.revad | |
load: true | |
docker-revad-eos: | |
name: docker (docker/Dockerfile.revad-eos) | |
uses: ./.github/workflows/docker.yml | |
with: | |
file: docker/Dockerfile.revad-eos | |
load: false | |
litmus: | |
needs: | |
- docker-revad-eos | |
strategy: | |
fail-fast: false | |
matrix: | |
test: [litmus-1, litmus-2] | |
uses: ./.github/workflows/compose.yml | |
with: | |
test: ${{ matrix.test }} | |
acceptance-1: | |
needs: | |
- docker-revad-eos | |
uses: ./.github/workflows/compose.yml | |
with: | |
test: acceptance-1 | |
submodules: true | |
acceptance-2: | |
needs: | |
- docker-revad-eos | |
strategy: | |
fail-fast: false | |
matrix: | |
part: [1, 2, 3, 4, 5, 6] | |
uses: ./.github/workflows/compose.yml | |
with: | |
test: acceptance-2 | |
submodules: true | |
parts: 6 | |
part: ${{ matrix.part }} |