diff options
author | Ewout ter Hoeven <[email protected]> | 2020-11-28 06:49:24 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2020-12-12 17:37:54 +0000 |
commit | e19f777d51820dc066db3a50e483eb1c015b96d8 (patch) | |
tree | b7ae4ec2595d66b315dc30e047cf25c4b5e7bae5 /.github | |
parent | 1907e58165b4fda614c785ac275bfc392ae271e6 (diff) |
CI: Windows: Remove pre-installed packages and use setup-python
Some packages are installed with apt-get while they are already included in the Ubuntu environment. Removing this speeds things up and possibly avoids conflicts.
Installed packages: https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md
Also switches to setup-python since it's a lot faster than using apt-get
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/windows.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bac6d0e37..e565b5d39 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -8,13 +8,11 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 - name: Environment Setup run: | - sudo apt-get install automake autoconf build-essential cmake curl gcc git intltool libtool libtool-bin m4 make nasm patch pkg-config python tar yasm zlib1g-dev ninja-build zip - sudo apt-get install bison bzip2 flex g++ gzip pax - sudo apt-get install python3-pip - sudo apt-get install python3-setuptools + sudo apt-get install automake autoconf build-essential intltool libtool libtool-bin make nasm patch tar yasm zlib1g-dev ninja-build gzip pax sudo pip3 install meson - name: Setup Toolchain |