Skip to content

Commit

Permalink
[CI] [GHA] Preinstall tzdata and gpg-agent packages in the setup …
Browse files Browse the repository at this point in the history
…Python action (openvinotoolkit#22606)

* preconfigure tzdata and gpg

* mv to all linux
  • Loading branch information
akashchi authored and ilya-lavrenov committed Feb 14, 2024
1 parent b03c36f commit 4abab0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/setup_python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ runs:
- if: ${{ runner.os == 'Linux' && inputs.self-hosted-runner == 'true' }}
name: Install 'actions/setup-python@v4' dependencies
shell: bash
run: apt-get update && apt-get install -y ca-certificates software-properties-common
run: apt-get update && apt-get install -y ca-certificates software-properties-common gpg-agent tzdata
env:
DEBIAN_FRONTEND: noninteractive # to prevent apt-get from waiting user input
TZ: "Europe/London" # to prevent tzdata from waiting user input

- if: ${{ runner.os == 'Linux' && runner.arch == 'ARM64' }}
name: Setup sudo and python3
Expand Down

0 comments on commit 4abab0c

Please sign in to comment.