Skip to content

Commit

Permalink
Enable on master
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jszczerbinski committed Nov 21, 2024
1 parent e4a0af8 commit 37c51aa
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,27 @@ jobs:
build_type: [ 'Debug', 'Release' ]
cloud_provider: [ 'AWS', 'AZURE', 'GCP' ]
steps:
- uses: actions/checkout@v1
- name: Restore cached deps
id: cache-restore-deps
uses: actions/cache/restore@v4
with:
path: |
dep-cache/
key: ${{ matrix.build_type }}-dep-cache
- uses: actions/checkout@v1
key: ${{ matrix.build_type }}-${{ github.event.pull_request.base.sha }}-dep-cache
if: github.event_name == 'pull_request'
- name: Build
shell: bash
env:
BUILD_TYPE: ${{ matrix.build_type }}
run: ci/build_linux.sh
- name: Save deps
- name: Cache deps
id: cache-save-deps
uses: actions/cache/save@v4
with:
path: dep-cache
key: ${{ steps.cache-restore-deps.outputs.cache-primary-key }}
key: ${{ matrix.build_type }}-${{ github.sha }}-dep-cache
if: github.ref_name == github.event.repository.default_branch
- uses: actions/setup-python@v1
with:
python-version: '3.7'
Expand Down

0 comments on commit 37c51aa

Please sign in to comment.