Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
Manifest Ingestion DAG
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU Software
OSDU Data Platform
Data Flow
Data Ingestion
Manifest Ingestion DAG
Merge requests
!112
Gonrg 4996 anthos dags int tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Gonrg 4996 anthos dags int tests
GONRG-4996_Anthos_DAGs_int_tests
into
master
Overview
0
Commits
1
Pipelines
31
Changes
1
Merged
Yan Sushchynski (EPAM)
requested to merge
GONRG-4996_Anthos_DAGs_int_tests
into
master
2 years ago
Overview
0
Commits
1
Pipelines
31
Changes
1
Expand
Type of change
Bug Fix
Feature
Does this introduce a change in the core logic?
[Yes]
Does this introduce a change in the cloud provider implementation, if so which cloud?
AWS
Azure
GCP
IBM
Updates description?
Add tnhos steps to the pipeline
Edited
2 years ago
by
Yan Sushchynski (EPAM)
0
0
Merge request reports
Compare
master
version 25
b5e9ea44
2 years ago
version 24
ec51221b
2 years ago
version 23
099bf0b1
2 years ago
version 22
70360a44
2 years ago
version 21
869004cf
2 years ago
version 20
550c8129
2 years ago
version 19
faff160c
2 years ago
version 18
a1658e00
2 years ago
version 17
bfc715e1
2 years ago
version 16
10ff649b
2 years ago
version 15
2e8b9ad8
2 years ago
version 14
46e0946a
2 years ago
version 13
a1d2cbdc
2 years ago
version 12
22379237
2 years ago
version 11
ff207f82
2 years ago
version 10
86ef971e
2 years ago
version 9
6a059ed4
2 years ago
version 8
cfbbdc06
2 years ago
version 7
f3e049c6
2 years ago
version 6
cf81979b
2 years ago
version 5
92d72c34
2 years ago
version 4
79093393
2 years ago
version 3
1886dfa3
2 years ago
version 2
84e66c21
2 years ago
version 1
5580b35a
2 years ago
master (base)
and
latest version
latest version
ccf788dc
1 commit,
2 years ago
version 25
b5e9ea44
1 commit,
2 years ago
version 24
ec51221b
1 commit,
2 years ago
version 23
099bf0b1
1 commit,
2 years ago
version 22
70360a44
1 commit,
2 years ago
version 21
869004cf
1 commit,
2 years ago
version 20
550c8129
3 commits,
2 years ago
version 19
faff160c
3 commits,
2 years ago
version 18
a1658e00
2 commits,
2 years ago
version 17
bfc715e1
1 commit,
2 years ago
version 16
10ff649b
1 commit,
2 years ago
version 15
2e8b9ad8
1 commit,
2 years ago
version 14
46e0946a
1 commit,
2 years ago
version 13
a1d2cbdc
1 commit,
2 years ago
version 12
22379237
1 commit,
2 years ago
version 11
ff207f82
1 commit,
2 years ago
version 10
86ef971e
1 commit,
2 years ago
version 9
6a059ed4
1 commit,
2 years ago
version 8
cfbbdc06
1 commit,
2 years ago
version 7
f3e049c6
1 commit,
2 years ago
version 6
cf81979b
1 commit,
2 years ago
version 5
92d72c34
1 commit,
2 years ago
version 4
79093393
1 commit,
2 years ago
version 3
1886dfa3
1 commit,
2 years ago
version 2
84e66c21
1 commit,
2 years ago
version 1
5580b35a
1 commit,
2 years ago
1 file
+
20
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
20
−
6
Options
@@ -90,10 +90,11 @@ test_dags:
tags
:
[
"
osdu-small"
]
stage
:
test_dags
needs
:
[
"
pylint"
,
"
isort"
]
image
:
eu.gcr.io/osdu-cicd-epam/airflow-python-dags/airflow-python-dags:latest
image
:
name
:
apache/airflow:2.1.2-python3.8
entrypoint
:
[
"
"
]
script
:
-
chmod +x tests/test_dags.sh
-
tests/./test_dags.sh || EXIT_CODE=$?
-
sh -c "tests/./test_dags.sh" || EXIT_CODE=$?
-
exit ${EXIT_CODE}
artifacts
:
paths
:
@@ -105,11 +106,12 @@ unit_tests:
tags
:
[
"
osdu-small"
]
stage
:
unit_tests
needs
:
[
"
pylint"
,
"
isort"
]
image
:
eu.gcr.io/osdu-cicd-epam/airflow-python-dags/airflow-python-dags:latest
image
:
name
:
apache/airflow:2.1.2-python3.8
entrypoint
:
[
"
"
]
script
:
-
chmod +x tests/unit_tests.sh
# - tests/./unit_tests.sh || EXIT_CODE=$? #TODO: unit tests moved to airflow-osdu-lib, need to remove `unit_tests` CI step later
-
exit
${EXIT_CODE}
-
exit
0
osdu_gcp_publish_dag
:
stage
:
publish_dag
@@ -135,12 +137,24 @@ osdu_gcp_deploy_composer_pre_ship:
variables
:
DAG_FOLDER
:
"
src/osdu_dags"
osdu_gcp_deploy_composer_anthos_env
:
stage
:
deploy
needs
:
[
"
unit_tests"
,
"
test_dags"
]
variables
:
DAG_FILE_PATH
:
"
src/osdu_dags/osdu-ingest-r3.py"
osdu_gcp_postman_tests_community
:
stage
:
end_to_end_postman_tests
variables
:
TEST_SOURCE_FILES_DIR
:
"
Postman
Collection/29_CICD_Setup_Ingestion"
COLLECTION_PATH
:
"
Postman
Collection/29_CICD_Setup_Ingestion/R3
Full
manifest-based
ingestion.postman_collection.json"
osdu_anthos_postman_tests
:
stage
:
end_to_end_postman_tests
variables
:
TEST_SOURCE_FILES_DIR
:
"
Postman
Collection/29_CICD_Setup_Ingestion"
COLLECTION_PATH
:
"
Postman
Collection/29_CICD_Setup_Ingestion/R3
Full
manifest-based
ingestion.postman_collection.json"
osdu_gcp_postman_tests_pre_ship
:
stage
:
end_to_end_postman_tests
variables
:
Loading