Skip to content

Updating include paths from python package #50

Updating include paths from python package

Updating include paths from python package #50

Workflow file for this run

name: Lib IO
on:
push:
branches: [ "master", "dev", "dev-ndy", "dev-sge", "dev-vge" ]
paths: ['lib/io/**', '.github/workflows/lib_io.yml']
env:
LIB_DIR: ${{github.workspace}}/lib/
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, ubuntu-22.04]
fail-fast: false
steps:
- name: Set git to use CRLF
run: |
git config --global core.autocrlf true
git config --global core.eol crlf
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Get Conan
uses: turtlebrowser/[email protected]
- name: Create default profile
run: conan profile detect
- name: Add custom remote
run: |
conan remote add --insecure cano7782 ${{ secrets.CONAN_SERVER_HOST }}
conan remote login -p ${{ secrets.CONAN_SERVER_PASSWORD }} cano7782 ${{ secrets.CONAN_SERVER_USER }}
- name: Create package
working-directory: ${{env.LIB_DIR}}
run: |
conan export util
conan export core
conan create io -b missing -s compiler.cppstd=20 -o vtx_io/*:test=True