From 0ced66107f8d96ab42c9f0ca43eaa09571d1e012 Mon Sep 17 00:00:00 2001 From: Cyril Moineau <cyril.moineau@cea.fr> Date: Thu, 1 Feb 2024 09:03:06 +0000 Subject: [PATCH] Add x mod --- .gitlab/ci/build.gitlab-ci.yml | 39 +++++++++++++++++++--------------- CHANGELOG | 3 +++ 2 files changed, 25 insertions(+), 17 deletions(-) create mode 100644 CHANGELOG diff --git a/.gitlab/ci/build.gitlab-ci.yml b/.gitlab/ci/build.gitlab-ci.yml index b9fdd937..1063298f 100644 --- a/.gitlab/ci/build.gitlab-ci.yml +++ b/.gitlab/ci/build.gitlab-ci.yml @@ -1,3 +1,6 @@ +include: + - remote: 'https://gitlab.eclipse.org/eclipse/aidge/gitlab_shared_files/-/raw/main/.gitlab/ci/shared_script.gitlab-ci.yml' + build:ubuntu_cpp: stage: build needs: [] @@ -6,9 +9,9 @@ build:ubuntu_cpp: script: # Download dependencies # aidge_core - - 'curl --location --output build_artifacts.zip "https://gitlab.eclipse.org/api/v4/projects/5139/jobs/artifacts/main/download?job=build:ubuntu_cpp"' - - unzip -o build_artifacts.zip -d . - - rm -rf build_cpp + - DEPENDENCY_NAME="aidge_core" + - DEPENDENCY_JOB="build:ubuntu_cpp" + - !reference [.download_dependency, script] # Build current module - export CMAKE_PREFIX_PATH=../install_cpp @@ -32,9 +35,9 @@ build:ubuntu_cpp_g++10: script: # Download dependencies # aidge_core - - 'curl --location --output build_artifacts.zip "https://gitlab.eclipse.org/api/v4/projects/5139/jobs/artifacts/main/download?job=build:ubuntu_cpp"' - - unzip -o build_artifacts.zip -d . - - rm -rf build_cpp + - DEPENDENCY_NAME="aidge_core" + - DEPENDENCY_JOB="build:ubuntu_cpp" + - !reference [.download_dependency, script] # Build current module - export CMAKE_PREFIX_PATH=../install_cpp @@ -55,9 +58,9 @@ build:ubuntu_cpp_g++12: script: # Download dependencies # aidge_core - - 'curl --location --output build_artifacts.zip "https://gitlab.eclipse.org/api/v4/projects/5139/jobs/artifacts/main/download?job=build:ubuntu_cpp"' - - unzip -o build_artifacts.zip -d . - - rm -rf build_cpp + - DEPENDENCY_NAME="aidge_core" + - DEPENDENCY_JOB="build:ubuntu_cpp" + - !reference [.download_dependency, script] # Build current module - export CMAKE_PREFIX_PATH=../install_cpp @@ -78,9 +81,9 @@ build:ubuntu_cpp_clang12: script: # Download dependencies # aidge_core - - 'curl --location --output build_artifacts.zip "https://gitlab.eclipse.org/api/v4/projects/5139/jobs/artifacts/main/download?job=build:ubuntu_cpp"' - - unzip -o build_artifacts.zip -d . - - rm -rf build_cpp + - DEPENDENCY_NAME="aidge_core" + - DEPENDENCY_JOB="build:ubuntu_cpp" + - !reference [.download_dependency, script] # Build current module - export CMAKE_PREFIX_PATH=../install_cpp @@ -101,9 +104,9 @@ build:ubuntu_cpp_clang15: script: # Download dependencies # aidge_core - - 'curl --location --output build_artifacts.zip "https://gitlab.eclipse.org/api/v4/projects/5139/jobs/artifacts/main/download?job=build:ubuntu_cpp"' - - unzip -o build_artifacts.zip -d . - - rm -rf build_cpp + - DEPENDENCY_NAME="aidge_core" + - DEPENDENCY_JOB="build:ubuntu_cpp" + - !reference [.download_dependency, script] # Build current module - export CMAKE_PREFIX_PATH=../install_cpp @@ -120,11 +123,13 @@ build:ubuntu_python: needs: [] tags: - docker + script: # Download dependencies # aidge_core (Python) - - 'curl --location --output build_artifacts.zip "https://gitlab.eclipse.org/api/v4/projects/5139/jobs/artifacts/main/download?job=build:ubuntu_python"' - - unzip -o build_artifacts.zip -d . + - DEPENDENCY_NAME="aidge_core" + - DEPENDENCY_JOB="build:ubuntu_python" + - !reference [.download_dependency, script] - python3 -m pip install virtualenv - virtualenv venv diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 00000000..82e90519 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,3 @@ +# Version 0.1.0 (January 23, 2024) + +Initial release -- GitLab