8000 ci: Full build conan dependencies only on schedule by mathbunnyru · Pull Request #2241 · XRPLF/clio · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ci: Full build conan dependencies only on schedule #2241

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/upload_conan_deps.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
name: Upload Conan Dependencies

on:
schedule:
- cron: "0 9 * * 1-5"
workflow_dispatch:
pull_request:
branches:
- develop
paths:
- .github/workflows/upload_conan_deps.yml
- .github/scripts/generate_conan_matrix.py
- conanfile.py
- conan.lock
push:
branches:
- develop
paths:
- .github/workflows/upload_conan_deps.yml
- .github/scripts/generate_conan_matrix.py
- conanfile.py
- conan.lock

Expand All @@ -27,15 +31,14 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Calculate recipes matrix 🛠
- name: Calculate conan matrix
id: set-matrix
run: .github/scripts/generate_conan_matrix.py >> "${GITHUB_OUTPUT}"

upload-conan-deps:
name: Build and Upload Conan Deps
name: Build ${{ matrix.compiler }}${{ matrix.sanitizer_ext }} ${{ matrix.build_type }}

needs: generate-matrix

Expand Down Expand Up @@ -70,7 +73,7 @@ jobs:
uses: ./.github/actions/generate
with:
conan_profile: ${{ env.CONAN_PROFILE }}
force_conan_source_build: "true"
force_conan_source_build: ${{ github.event_name == 'schedule' }}
build_type: ${{ matrix.build_type }}

- name: Login to Conan
Expand Down
Loading
0