* commons #1461
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CondaBuildWindows | |
on: [push] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
GITHUB_WORKFLOW: CondaBuildWindows | |
jobs: | |
build: | |
# The CMake configure and build commands are platform agnostic and should work equally | |
# well on Windows or Mac. You can convert this to a matrix build if you need | |
# cross-platform coverage. | |
# See: https://docs.github.com/en/actions/configuring-and-managing-workflows/configuring-a-workflow#configuring-a-build-matrix | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["windows-2019"] | |
python-version: ["3.7.9"] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
submodules: 'recursive' | |
- name: Cache conda | |
uses: actions/cache@v3 | |
env: | |
# Increase this value to reset cache if etc/example-environment.yml has not changed | |
CACHE_NUMBER: 0 | |
with: | |
path: ~/conda_pkgs_dir | |
key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('.github/macos-environment.yml') }} | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
environment-file: .github/macos-environment.yml | |
activate-environment: tracking | |
python-version: ${{ matrix.python-version }} | |
channels: main | |
auto-activate-base: true | |
auto-update-conda: true | |
use-only-tar-bz2: true | |
- name: Build | |
shell: bash -l {0} | |
working-directory: ${{runner.workspace}} | |
run: | | |
echo "::group::Info" | |
conda info | |
conda list | |
echo "::endgroup::" | |
echo "::group::Fix Meta" | |
cd $GITHUB_WORKSPACE/conda | |
p=${GITHUB_REF##*/} | |
sed -i -e '/^{% set git_tag =/ s+main+'$p'+g' meta.yaml | |
cat meta.yaml | |
echo "::endgroup::" | |
echo "::group::Build" | |
conda build . --override-channels -c pytorch -c nvidia -c defaults | |
echo "::endgroup::" | |
echo "::group::Test" | |
echo $CONDA_PREFIX | |
conda create -y -n test --override-channels -c $CONDA_PREFIX/conda-bld/ -c pytorch -c nvidia -c defaults trex | |
conda activate test | |
pvinfo -opencv_ffmpeg_support | |
pvinfo -opencv_opencl_support | |
echo "::endgroup::" | |
echo "::group::TestFunctions" | |
cd $GITHUB_WORKSPACE/Application/Tests | |
./run_unix.bash | |
echo "::endgroup::" |