From c5ea77a6b7d5bb8ab15cf8f4a4e1bbe2c5ca8c13 Mon Sep 17 00:00:00 2001 From: Karutoh Date: Sun, 13 Oct 2024 16:27:09 -0700 Subject: [PATCH] Testing conan on linux. --- .gitea/workflows/Test.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/Test.yaml b/.gitea/workflows/Test.yaml index 1253029..a616c9b 100644 --- a/.gitea/workflows/Test.yaml +++ b/.gitea/workflows/Test.yaml @@ -63,7 +63,7 @@ jobs: echo Creating package. conan create . --profile:host ./profiles/Linux_x86_64_Release --profile:build ./profiles/Linux_x86_64_Release echo Adding remote. - conan remote add origin https://gitea.eventhorizonstudio.io/api/packages/EHS/conan --force + 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. @@ -106,11 +106,17 @@ jobs: - name: Generating Package run: | cd ${{ gitea.workspace }} + echo Installing dependencies. conan install . --profile:host ./profiles/Linux_AARCH64_Release --profile:build ./profiles/Linux_AARCH64_Release --build=missing + echo Creating package. conan create . --profile:host ./profiles/Linux_AARCH64_Release --profile:build ./profiles/Linux_AARCH64_Release - conan remote add origin https://gitea.eventhorizonstudio.io/api/packages/EHS/conan --force + 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