Skip to content
Snippets Groups Projects
Commit 0ced6610 authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Add x mod

parent cc621da3
No related branches found
No related tags found
2 merge requests!50version 0.2.0,!35Add x mod
include:
- remote: 'https://gitlab.eclipse.org/eclipse/aidge/gitlab_shared_files/-/raw/main/.gitlab/ci/shared_script.gitlab-ci.yml'
build:ubuntu_cpp: build:ubuntu_cpp:
stage: build stage: build
needs: [] needs: []
...@@ -6,9 +9,9 @@ build:ubuntu_cpp: ...@@ -6,9 +9,9 @@ build:ubuntu_cpp:
script: script:
# Download dependencies # Download dependencies
# aidge_core # aidge_core
- 'curl --location --output build_artifacts.zip "https://gitlab.eclipse.org/api/v4/projects/5139/jobs/artifacts/main/download?job=build:ubuntu_cpp"' - DEPENDENCY_NAME="aidge_core"
- unzip -o build_artifacts.zip -d . - DEPENDENCY_JOB="build:ubuntu_cpp"
- rm -rf build_cpp - !reference [.download_dependency, script]
# Build current module # Build current module
- export CMAKE_PREFIX_PATH=../install_cpp - export CMAKE_PREFIX_PATH=../install_cpp
...@@ -32,9 +35,9 @@ build:ubuntu_cpp_g++10: ...@@ -32,9 +35,9 @@ build:ubuntu_cpp_g++10:
script: script:
# Download dependencies # Download dependencies
# aidge_core # aidge_core
- 'curl --location --output build_artifacts.zip "https://gitlab.eclipse.org/api/v4/projects/5139/jobs/artifacts/main/download?job=build:ubuntu_cpp"' - DEPENDENCY_NAME="aidge_core"
- unzip -o build_artifacts.zip -d . - DEPENDENCY_JOB="build:ubuntu_cpp"
- rm -rf build_cpp - !reference [.download_dependency, script]
# Build current module # Build current module
- export CMAKE_PREFIX_PATH=../install_cpp - export CMAKE_PREFIX_PATH=../install_cpp
...@@ -55,9 +58,9 @@ build:ubuntu_cpp_g++12: ...@@ -55,9 +58,9 @@ build:ubuntu_cpp_g++12:
script: script:
# Download dependencies # Download dependencies
# aidge_core # aidge_core
- 'curl --location --output build_artifacts.zip "https://gitlab.eclipse.org/api/v4/projects/5139/jobs/artifacts/main/download?job=build:ubuntu_cpp"' - DEPENDENCY_NAME="aidge_core"
- unzip -o build_artifacts.zip -d . - DEPENDENCY_JOB="build:ubuntu_cpp"
- rm -rf build_cpp - !reference [.download_dependency, script]
# Build current module # Build current module
- export CMAKE_PREFIX_PATH=../install_cpp - export CMAKE_PREFIX_PATH=../install_cpp
...@@ -78,9 +81,9 @@ build:ubuntu_cpp_clang12: ...@@ -78,9 +81,9 @@ build:ubuntu_cpp_clang12:
script: script:
# Download dependencies # Download dependencies
# aidge_core # aidge_core
- 'curl --location --output build_artifacts.zip "https://gitlab.eclipse.org/api/v4/projects/5139/jobs/artifacts/main/download?job=build:ubuntu_cpp"' - DEPENDENCY_NAME="aidge_core"
- unzip -o build_artifacts.zip -d . - DEPENDENCY_JOB="build:ubuntu_cpp"
- rm -rf build_cpp - !reference [.download_dependency, script]
# Build current module # Build current module
- export CMAKE_PREFIX_PATH=../install_cpp - export CMAKE_PREFIX_PATH=../install_cpp
...@@ -101,9 +104,9 @@ build:ubuntu_cpp_clang15: ...@@ -101,9 +104,9 @@ build:ubuntu_cpp_clang15:
script: script:
# Download dependencies # Download dependencies
# aidge_core # aidge_core
- 'curl --location --output build_artifacts.zip "https://gitlab.eclipse.org/api/v4/projects/5139/jobs/artifacts/main/download?job=build:ubuntu_cpp"' - DEPENDENCY_NAME="aidge_core"
- unzip -o build_artifacts.zip -d . - DEPENDENCY_JOB="build:ubuntu_cpp"
- rm -rf build_cpp - !reference [.download_dependency, script]
# Build current module # Build current module
- export CMAKE_PREFIX_PATH=../install_cpp - export CMAKE_PREFIX_PATH=../install_cpp
...@@ -120,11 +123,13 @@ build:ubuntu_python: ...@@ -120,11 +123,13 @@ build:ubuntu_python:
needs: [] needs: []
tags: tags:
- docker - docker
script: script:
# Download dependencies # Download dependencies
# aidge_core (Python) # 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"' - DEPENDENCY_NAME="aidge_core"
- unzip -o build_artifacts.zip -d . - DEPENDENCY_JOB="build:ubuntu_python"
- !reference [.download_dependency, script]
- python3 -m pip install virtualenv - python3 -m pip install virtualenv
- virtualenv venv - virtualenv venv
......
# Version 0.1.0 (January 23, 2024)
Initial release
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment