diff --git a/.github/workflows/build_prod_exe.yml b/.github/workflows/build_prod_exe.yml index 835a39c..17909f3 100644 --- a/.github/workflows/build_prod_exe.yml +++ b/.github/workflows/build_prod_exe.yml @@ -15,12 +15,12 @@ jobs: strategy: matrix: include: - - { runner: macos-latest, osname: macOS, arch: amd64, target: x86_64-apple-darwin } - - { runner: macos-latest, osname: macOS, arch: arm64, target: aarch64-apple-darwin } + # - { runner: macos-latest, osname: macOS, arch: amd64, target: x86_64-apple-darwin } + # - { runner: macos-latest, osname: macOS, arch: arm64, target: aarch64-apple-darwin } - { runner: ubuntu-latest, osname: linux, arch: amd64, target: x86_64-unknown-linux-gnu } - - { runner: ubuntu-latest, osname: linux, arch: arm64, target: aarch64-unknown-linux-gnu} - - { runner: windows-latest, osname: windows, arch: amd64, target: x86_64-pc-windows-msvc, extension: ".exe"} - - { runner: windows-latest, osname: windows, arch: arm64, target: aarch64-unknown-linux-gnu, extension: ".exe"} + # - { runner: ubuntu-latest, osname: linux, arch: arm64, target: aarch64-unknown-linux-gnu} + # - { runner: windows-latest, osname: windows, arch: amd64, target: x86_64-pc-windows-msvc, extension: ".exe"} + # - { runner: windows-latest, osname: windows, arch: arm64, target: aarch64-unknown-linux-gnu, extension: ".exe"} steps: - name: Checkout code @@ -49,6 +49,7 @@ jobs: sudo apt-get update sudo apt-get install -y pkg-config libssl-dev if [ "${{ matrix.arch }}" = "amd64" ]; then + sudo apt-get install gcc-aarch64-linux-gnu echo "PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig" >> $GITHUB_ENV elif [ "${{ matrix.arch }}" = "arm64" ]; then echo "PKG_CONFIG_PATH=/usr/lib/aarch64-linux-gnu/pkgconfig" >> $GITHUB_ENV