Skip to content

conan 2

conan 2 #159

Workflow file for this run

name: OpenDocumentReader-iOS
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: test
runs-on: macos-11
steps:
- name: checkout
uses: actions/checkout@v4
- name: pods
run: pod install
# https://stackoverflow.com/a/57758679/198996
- name: bundler
run: gem install bundler:1.17.3
- name: fastlane
run: bundle install
- name: pip
run: python3 -m ensurepip
- name: conan
run: pip3 install conan
- name: conan remote
run: conan remote add --index 0 odr https://artifactory.opendocument.app/artifactory/api/conan/conan
- name: conan login
run: conan remote login odr admin --password ${{ secrets.ARTIFACTORY }}
- name: conan profile
run: conan profile detect
- name: conan install
run: >
conan install .
--build=missing
--profile:host=ios-simulator
-s build_type=Release
-s &:build_type=RelWithDebInfo
-s odrcore/*:build_type=RelWithDebInfo
- name: run tests
run: bundle exec fastlane tests
- uses: actions/upload-artifact@v4
if: always()
with:
name: logs
path: |
/Users/runner/Library/Developer/Xcode/DerivedData/OpenDocumentReader-*/
- name: upload binaries to conan repo
run: conan upload "*" --check --confirm --remote odr