From cfbe0b48ac403b15a8b39e676089727883c6c178 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20D=C3=ADaz=20M=C3=A1s?= Date: Sun, 13 Feb 2022 12:16:52 +0100 Subject: [PATCH] ci: remove conanCache from release workflow. Use newer python (#2092) --- .github/workflows/release.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 15ba113e..cab50aaa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -96,15 +96,9 @@ jobs: version: 1.10.0 - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: - python-version: 3.7 - - - name: Restore conan cache - uses: actions/cache@v2 - with: - path: ${{github.workspace}}/conanCache - key: ${{runner.os}}-packaged-win-release-${{ hashFiles('conanfile.py') }} + python-version: 3.9 - name: Install doxygen run: | @@ -114,18 +108,15 @@ jobs: - name: Install Conan & Common config run: | pip.exe install "conan==1.45.0" - conan config install https://github.com/conan-io/conanclientcert.git conan profile new --detect default conan profile update settings.build_type=Release default conan profile update settings.compiler="Visual Studio" default conan profile update settings.compiler.version=17 default - conan config set storage.path=$Env:GITHUB_WORKSPACE/conanCache - name: Run Conan run: | md build cd build - conan profile list conan install .. --build missing - name: Build packaged release