Skip to content

Commit

Permalink
Cache SISL 11
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd committed Jan 3, 2024
1 parent 9a91944 commit 28548ff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ on:
type: string

jobs:
Sisl10Deps:
uses: eBay/sisl/.github/workflows/build_dependencies.yml@stable/v10.x
SislDeps:
uses: eBay/sisl/.github/workflows/build_dependencies.yml@master
with:
branch: stable/v10.x
branch: master
platform: ${{ inputs.platform }}
build-type: ${{ inputs.build-type }}
malloc-impl: ${{ inputs.malloc-impl }}
Expand All @@ -32,7 +32,7 @@ jobs:
if: ${{ github.event_name != 'pull_request' }}

IOMgrDeps:
needs: Sisl10Deps
needs: SislDeps
uses: eBay/iomanager/.github/workflows/build_dependencies.yml@master
with:
branch: master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
uses: eBay/sisl/.github/actions/load_conan@stable/v8.x
with:
load_any: 'True'
key_prefix: Sisl10Deps-${{ inputs.platform }}-${{ inputs.build-type }}-${{ inputs.malloc-impl }}-${{ inputs.prerelease }}
key_prefix: SislDeps-${{ inputs.platform }}-${{ inputs.build-type }}-${{ inputs.malloc-impl }}-${{ inputs.prerelease }}
if: ${{ inputs.testing == 'True' || steps.restore-cache.outputs.cache-hit != 'true' }}

- name: Retrieve Dependencies
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
uses: eBay/sisl/.github/actions/load_conan@stable/v8.x
with:
load_any: 'True'
key_prefix: Sisl10Deps-${{ inputs.platform }}-${{ inputs.build-type }}-${{ inputs.malloc-impl }}-${{ inputs.prerelease }}
key_prefix: SislDeps-${{ inputs.platform }}-${{ inputs.build-type }}-${{ inputs.malloc-impl }}-${{ inputs.prerelease }}
if: ${{ inputs.testing == 'True' && github.event_name != 'pull_request' && steps.restore-cache.outputs.cache-hit != 'true' }}

- name: Reload IOMgr Cache
Expand Down
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def build_requirements(self):
self.build_requires("gtest/1.14.0")

def requirements(self):
self.requires("iomgr/[~=10, include_prerelease=True]@oss/master")
self.requires("sisl/[>=10.3]")
self.requires("iomgr/[~=11, include_prerelease=True]@oss/master")
self.requires("sisl/[~=11, include_prerelease=True]@oss/master")

self.requires("farmhash/cci.20190513@")
if self.settings.arch in ['x86', 'x86_64']:
Expand Down

0 comments on commit 28548ff

Please sign in to comment.