Fix error in workflow YAML file and update ingestion-core version (#6193)

This commit is contained in:
Nahuel 2022-07-19 15:41:21 +02:00 committed by GitHub
parent 615286ee50
commit ee21d6b10e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ jobs:
- name: Install Ubuntu dependencies
run: |
# stop relying on apt cache of GitHub runners
# stop relying on apt cache of GitHub runners
sudo apt-get update
sudo apt-get install -y unixodbc-dev python3-venv librdkafka-dev gcc libsasl2-dev build-essential libssl-dev libffi-dev \
librdkafka-dev unixodbc-dev libevent-dev antlr4
@ -74,7 +74,7 @@ jobs:
source env/bin/activate
make coverage
rm pom.xml
# fix coverage xml for github
# fix coverage xml report for github
sed -i 's/src\/metadata/\/github\/workspace\/ingestion\/src\/metadata/g'
- name: Push Results to Sonar

View File

@ -7,5 +7,5 @@ Provides metadata version information.
from incremental import Version
__version__ = Version("metadata", 0, 12, 0)
__version__ = Version("metadata", 0, 12, 0, dev=0)
__all__ = ["__version__"]