Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jszczerbinski committed Nov 21, 2024
1 parent 770ed45 commit e4a0af8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,13 @@ jobs:
id: cache-save-deps
uses: actions/cache/save@v4
with:
path: |
dep-cache/
path: dep-cache
key: ${{ steps.cache-restore-deps.outputs.cache-primary-key }}
- uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: 'x64'
- name: Test
shell: bash
env:
BUILD_TYPE: ${{ matrix.build_type }}
CLOUD_PROVIDER: ${{ matrix.cloud_provider }}
PARAMETERS_SECRET: ${{ secrets.PARAMETERS_SECRET }}
run: ci/test_linux.sh

build-test-win:
name: Build-Test-Win
runs-on: windows-2019
Expand Down
3 changes: 2 additions & 1 deletion scripts/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ function cache_dependency()
local build_type=$3

local zip_file_name=$(get_zip_file_name $component_name $component_version $build_type)
cp $UTILS_DIR/../artifacts/$zip_file_name $CACHE_DIR
mkdir -p $CACHE_DIR
cp $UTILS_DIR/../artifacts/$zip_file_name "$CACHE_DIR/"
}

function upload_to_sfc_jenkins()
Expand Down

0 comments on commit e4a0af8

Please sign in to comment.