Skip to content
Snippets Groups Projects
Unverified Commit 2a7737fd authored by Shenghang Tsai's avatar Shenghang Tsai Committed by GitHub
Browse files

Add conda env to Simple CI (#5385)


* hwloc disable shared

* fix

* add conda env to simple ci

* refine

* refine

* fix

* refine

* refine

* fix

Co-authored-by: default avatarliujuncheng <liujuncheng1022@gmail.com>
Co-authored-by: default avataroneflow-ci-bot <69100618+oneflow-ci-bot@users.noreply.github.com>
parent 114a0335
No related branches found
No related tags found
No related merge requests found
......@@ -31,17 +31,23 @@ jobs:
fail-fast: false
max-parallel: 3
matrix:
test_suite: ["mac", "ubuntu"]
test_suite: ["conda", "mac", "ubuntu"]
cmake_generator: ["Ninja", "Unix Makefiles"]
cmake_build_type: ["Debug", "Release"]
build_shared_libs: ["ON", "OFF"]
include:
- test_suite: conda
os: "ubuntu-20.04"
make_concurrency: 2
- test_suite: mac
os: "macos-10.15"
make_concurrency: 2
- test_suite: ubuntu
os: "ubuntu-20.04"
make_concurrency: 2
exclude:
- test_suite: conda
cmake_generator: "Ninja"
steps:
- uses: actions/checkout@v2
with:
......@@ -50,14 +56,12 @@ jobs:
if: matrix.test_suite == 'mac'
run: |
brew install nasm ninja
shell: bash
- name: Install dependencies (apt)
if: matrix.test_suite == 'ubuntu'
run: |
sudo apt install -y libopenblas-dev nasm g++ gcc python3-pip ninja-build
shell: bash
- name: Cache pip (Linux)
if: startsWith(runner.os, 'Linux')
if: startsWith(runner.os, 'Linux') && matrix.test_suite != 'conda'
uses: actions/cache@v2
with:
path: ~/.cache/pip
......@@ -69,10 +73,27 @@ jobs:
path: ~/Library/Caches/pip
key: ${{ matrix.os }}-pip-${{ hashFiles('**/requirements.txt') }}
- name: Install dependencies (pip)
if: matrix.test_suite != 'conda'
run: |
python3 -m pip install -r ci/requirements.txt
python3 -m pip install -r dev-requirements.txt
shell: bash
- name: Download conda environment.yml
if: matrix.test_suite == 'conda'
run: |
wget https://raw.githubusercontent.com/Oneflow-Inc/conda-env/5b985c863ef73fc3f3b597289fdcf740d52cf71c/dev/gcc7/environment.yml
- uses: conda-incubator/setup-miniconda@v2
if: matrix.test_suite == 'conda'
name: Setup conda
with:
activate-environment: oneflow-dev-gcc7
environment-file: environment.yml
python-version: 3.6
auto-activate-base: false
- name: Set environment variables (conda)
if: matrix.test_suite == 'conda'
run: |
conda env config vars set CXXFLAGS="-fPIC"
shell: bash -l {0}
- name: Set environment variables
run: |
set -x
......@@ -85,7 +106,7 @@ jobs:
cmake_flags+=" -DCMAKE_MACOSX_RPATH=FALSE"
cmake_flags+=" -DCMAKE_BUILD_WITH_INSTALL_RPATH=FALSE"
echo "cmake_flags=${cmake_flags}" >> $GITHUB_ENV
shell: bash
shell: bash -l {0}
- name: Build (third party)
if: matrix.cmake_generator != 'Ninja'
run: |
......@@ -95,7 +116,7 @@ jobs:
cd build-third_party
cmake .. ${{ env.cmake_flags }} -DTHIRD_PARTY=ON -DONEFLOW=OFF -DTHIRD_PARTY_DIR=$PWD/../third_party_install
cmake --build . -j $(nproc)
shell: bash
shell: bash -l {0}
- name: Build (of_ccobj)
if: matrix.cmake_generator != 'Ninja'
run: |
......@@ -103,7 +124,7 @@ jobs:
cd build
cmake .. ${{ env.cmake_flags }} -DTHIRD_PARTY=OFF -DONEFLOW=ON -DTHIRD_PARTY_DIR=$PWD/../third_party_install
cmake --build . -j ${{ matrix.make_concurrency }} --target of_ccobj
shell: bash
shell: bash -l {0}
- name: Build (oneflow_internal)
if: always() && matrix.cmake_generator != 'Ninja'
run: |
......@@ -111,7 +132,7 @@ jobs:
cd build
cmake .. ${{ env.cmake_flags }} -DTHIRD_PARTY=OFF -DONEFLOW=ON
cmake --build . -j ${{ matrix.make_concurrency }} --target oneflow_internal
shell: bash
shell: bash -l {0}
- name: Build (oneflow_py)
if: always() && matrix.cmake_generator != 'Ninja'
run: |
......@@ -119,7 +140,7 @@ jobs:
cd build
cmake .. ${{ env.cmake_flags }} -DTHIRD_PARTY=OFF -DONEFLOW=ON
cmake --build . -j ${{ matrix.make_concurrency }} --target oneflow_py
shell: bash
shell: bash -l {0}
- name: Build (oneflow_testexe)
if: always() && matrix.cmake_generator != 'Ninja'
run: |
......@@ -127,7 +148,7 @@ jobs:
cd build
cmake .. ${{ env.cmake_flags }} -DTHIRD_PARTY=OFF -DONEFLOW=ON
cmake --build . -j ${{ matrix.make_concurrency }} --target oneflow_testexe
shell: bash
shell: bash -l {0}
- name: Build (ALL)
if: always()
continue-on-error: ${{ startsWith(runner.os, 'macOS') && matrix.cmake_generator == 'Ninja' && matrix.build_shared_libs == 'ON' }}
......@@ -136,7 +157,7 @@ jobs:
cd build
cmake .. ${{ env.cmake_flags }}
cmake --build . -j ${{ matrix.make_concurrency }}
shell: bash
shell: bash -l {0}
- name: Exe test
if: always()
continue-on-error: true
......@@ -147,7 +168,7 @@ jobs:
mkdir -p build
cd build
./bin/oneflow_testexe
shell: bash
shell: bash -l {0}
- name: Op test
if: always()
continue-on-error: true
......@@ -157,7 +178,7 @@ jobs:
ulimit -c
source build/source.sh
ONEFLOW_TEST_GITHUB_HOSTED=1 ONEFLOW_TEST_CPU_ONLY=1 bash ci/test/1node_op_test.sh
shell: bash
shell: bash -l {0}
- name: "Tar logs"
if: always()
run: |
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment