Testing conan on linux.
Some checks failed
Build & Release / Linux-AMD64-Build (push) Failing after 7s
Build & Release / Linux-AARCH64-Build (push) Failing after 8s
Build & Release / Windows-AMD64-Build (push) Failing after 16s

This commit is contained in:
2024-10-14 07:10:21 -07:00
parent c5ea77a6b7
commit a27c28f089
4 changed files with 20 additions and 12 deletions

View File

@@ -15,6 +15,22 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- name: Generating Package
run: |
cd ${{ gitea.workspace }}
echo Installing dependencies.
conan install . --profile:host ./profiles/Windows_x86_64_Release --profile:build ./profiles/Windows_x86_64_Release --build=missing
echo Creating package.
conan create . --profile:host ./profiles/Windows_x86_64_Release --profile:build ./profiles/Windows_x86_64_Release
echo Adding remote.
conan remote add origin https://gitea.eventhorizonstudio.io/api/packages/EventHorizonStudio/conan --force
echo Logging in to remote.
conan remote login origin ${{secrets.CONAN_USERNAME}} --password ${{secrets.CONAN_TOKEN}}
echo Uploading to remote.
conan upload --remote=origin ehs
echo Removing remote.
conan remote remove origin
- name: Generating Documentation
run: |
doxygen ehs-docs-config.doxyfile