Update build.yml

pull/2195/head
KingLucius 2023-10-23 15:06:02 +03:00 committed by GitHub
parent ee5b5cd061
commit d3df1d564d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,7 @@
name: build name: build
on: [push, pull_request] on:
workflow_dispatch:
jobs: jobs:
build: build:
@ -77,11 +78,11 @@ jobs:
- name: Configure autotools (Linux, gnutls) - name: Configure autotools (Linux, gnutls)
if: runner.os == 'Linux' && matrix.crypto == 'gnutls' if: runner.os == 'Linux' && matrix.crypto == 'gnutls'
run: | run: |
./configure --with-gnutls --without-openssl --with-libz --with-libcares --with-libexpat --without-libxml2 --without-libgcrypt --without-libnettle --without-libgmp --with-libssh2 --with-sqlite3 --without-jemalloc ARIA2_STATIC=yes --disable-shared ./configure --with-gnutls --without-openssl
- name: Configure autotools (Linux, openssl) - name: Configure autotools (Linux, openssl)
if: runner.os == 'Linux' && matrix.crypto == 'openssl' if: runner.os == 'Linux' && matrix.crypto == 'openssl'
run: | run: |
./configure --without-gnutls --with-openssl --with-libz --with-libcares --with-libexpat --without-libxml2 --without-libgcrypt --without-libnettle --without-libgmp --with-libssh2 --with-sqlite3 --without-jemalloc ARIA2_STATIC=yes --disable-shared ./configure --without-gnutls --with-openssl
- name: Configure autotools (macOS) - name: Configure autotools (macOS)
if: runner.os == 'macOS' if: runner.os == 'macOS'
run: | run: |