Skip to content

Commit

Permalink
Install dependencies for vcpkg
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Sep 6, 2023
1 parent a85e86f commit 5cdfef8
Showing 1 changed file with 36 additions and 27 deletions.
63 changes: 36 additions & 27 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ jobs:
cibw_environment: >
VCPKG_INSTALLATION_ROOT=/vcpkg
APNGASM_COMPILE_TARGET=x64
cibw_before_all: >
git clone https://github.com/microsoft/vcpkg.git /vcpkg &&
/vcpkg/bootstrap-vcpkg.sh &&
cibw_before_all: |
yum install devtoolset-7 centos-release-scl -y
git clone https://github.com/microsoft/vcpkg.git /vcpkg
/vcpkg/bootstrap-vcpkg.sh
./prepare-linux.sh
- os: ubuntu-20.04
arch: x86
Expand All @@ -78,9 +79,10 @@ jobs:
cibw_environment: >
VCPKG_INSTALLATION_ROOT=/vcpkg
APNGASM_COMPILE_TARGET=i686
cibw_before_all: >
git clone https://github.com/microsoft/vcpkg.git /vcpkg &&
/vcpkg/bootstrap-vcpkg.sh &&
cibw_before_all: |
yum install devtoolset-7 centos-release-scl -y
git clone https://github.com/microsoft/vcpkg.git /vcpkg
/vcpkg/bootstrap-vcpkg.sh
./prepare-linux.sh
- os: ubuntu-20.04
arch: arm64
Expand All @@ -90,9 +92,10 @@ jobs:
cibw_environment: >
VCPKG_INSTALLATION_ROOT=/vcpkg
APNGASM_COMPILE_TARGET=aarch64
cibw_before_all: >
git clone https://github.com/microsoft/vcpkg.git /vcpkg &&
/vcpkg/bootstrap-vcpkg.sh &&
cibw_before_all: |
yum install devtoolset-7 centos-release-scl -y
git clone https://github.com/microsoft/vcpkg.git /vcpkg
/vcpkg/bootstrap-vcpkg.sh
./prepare-linux.sh
- os: ubuntu-20.04
arch: arm64
Expand All @@ -102,9 +105,10 @@ jobs:
cibw_environment: >
VCPKG_INSTALLATION_ROOT=/vcpkg
APNGASM_COMPILE_TARGET=aarch64
cibw_before_all: >
git clone https://github.com/microsoft/vcpkg.git /vcpkg &&
/vcpkg/bootstrap-vcpkg.sh &&
cibw_before_all: |
yum install devtoolset-7 centos-release-scl -y
git clone https://github.com/microsoft/vcpkg.git /vcpkg
/vcpkg/bootstrap-vcpkg.sh
./prepare-linux.sh
- os: ubuntu-20.04
arch: arm64
Expand All @@ -114,9 +118,10 @@ jobs:
cibw_environment: >
VCPKG_INSTALLATION_ROOT=/vcpkg
APNGASM_COMPILE_TARGET=aarch64
cibw_before_all: >
git clone https://github.com/microsoft/vcpkg.git /vcpkg &&
/vcpkg/bootstrap-vcpkg.sh &&
cibw_before_all: |
yum install devtoolset-7 centos-release-scl -y
git clone https://github.com/microsoft/vcpkg.git /vcpkg
/vcpkg/bootstrap-vcpkg.sh
./prepare-linux.sh
- os: ubuntu-20.04
arch: ppc64le
Expand All @@ -126,9 +131,10 @@ jobs:
cibw_environment: >
VCPKG_INSTALLATION_ROOT=/vcpkg
APNGASM_COMPILE_TARGET=ppc64le
cibw_before_all: >
git clone https://github.com/microsoft/vcpkg.git /vcpkg &&
/vcpkg/bootstrap-vcpkg.sh &&
cibw_before_all: |
yum install devtoolset-7 centos-release-scl -y
git clone https://github.com/microsoft/vcpkg.git /vcpkg
/vcpkg/bootstrap-vcpkg.sh
./prepare-linux.sh
- os: ubuntu-20.04
arch: ppc64le
Expand All @@ -138,9 +144,10 @@ jobs:
cibw_environment: >
VCPKG_INSTALLATION_ROOT=/vcpkg
APNGASM_COMPILE_TARGET=ppc64le
cibw_before_all: >
git clone https://github.com/microsoft/vcpkg.git /vcpkg &&
/vcpkg/bootstrap-vcpkg.sh &&
cibw_before_all: |
yum install devtoolset-7 centos-release-scl -y
git clone https://github.com/microsoft/vcpkg.git /vcpkg
/vcpkg/bootstrap-vcpkg.sh
./prepare-linux.sh
- os: ubuntu-20.04
arch: s390x
Expand All @@ -150,9 +157,10 @@ jobs:
cibw_environment: >
VCPKG_INSTALLATION_ROOT=/vcpkg
APNGASM_COMPILE_TARGET=s390x
cibw_before_all: >
git clone https://github.com/microsoft/vcpkg.git /vcpkg &&
/vcpkg/bootstrap-vcpkg.sh &&
cibw_before_all: |
yum install devtoolset-7 centos-release-scl -y
git clone https://github.com/microsoft/vcpkg.git /vcpkg
/vcpkg/bootstrap-vcpkg.sh
./prepare-linux.sh
- os: ubuntu-20.04
arch: s390x
Expand All @@ -162,9 +170,10 @@ jobs:
cibw_environment: >
VCPKG_INSTALLATION_ROOT=/vcpkg
APNGASM_COMPILE_TARGET=s390x
cibw_before_all: >
git clone https://github.com/microsoft/vcpkg.git /vcpkg &&
/vcpkg/bootstrap-vcpkg.sh &&
cibw_before_all: |
yum install devtoolset-7 centos-release-scl -y
git clone https://github.com/microsoft/vcpkg.git /vcpkg
/vcpkg/bootstrap-vcpkg.sh
./prepare-linux.sh
steps:
Expand Down

0 comments on commit 5cdfef8

Please sign in to comment.