|
@ -21,8 +21,6 @@ jobs: |
|
|
|
|
|
|
|
|
- name: Run minimal test set |
|
|
- name: Run minimal test set |
|
|
run: | |
|
|
run: | |
|
|
./autogen.sh |
|
|
|
|
|
./configure |
|
|
|
|
|
make test |
|
|
make test |
|
|
|
|
|
|
|
|
- if: ${{ failure() }} |
|
|
- if: ${{ failure() }} |
|
@ -55,7 +53,7 @@ jobs: |
|
|
|
|
|
|
|
|
- name: Run minimal test set |
|
|
- name: Run minimal test set |
|
|
run: | |
|
|
run: | |
|
|
./autogen.sh |
|
|
make configure |
|
|
./configure \ |
|
|
./configure \ |
|
|
--enable-pthread \ |
|
|
--enable-pthread \ |
|
|
--enable-miniupnp \ |
|
|
--enable-miniupnp \ |
|
@ -78,12 +76,6 @@ jobs: |
|
|
run: | |
|
|
run: | |
|
|
git fetch --force --tags |
|
|
git fetch --force --tags |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Make the makefiles |
|
|
|
|
|
run: | |
|
|
|
|
|
./autogen.sh |
|
|
|
|
|
./configure |
|
|
|
|
|
|
|
|
|
|
|
- name: Install essential |
|
|
- name: Install essential |
|
|
run: | |
|
|
run: | |
|
|
sudo apt update |
|
|
sudo apt update |
|
@ -118,7 +110,7 @@ jobs: |
|
|
|
|
|
|
|
|
- name: Make the makefiles |
|
|
- name: Make the makefiles |
|
|
run: | |
|
|
run: | |
|
|
./autogen.sh |
|
|
make configure |
|
|
|
|
|
|
|
|
export CFLAGS="${{ matrix.flags }}" |
|
|
export CFLAGS="${{ matrix.flags }}" |
|
|
export LDFLAGS="${{ matrix.flags }}" |
|
|
export LDFLAGS="${{ matrix.flags }}" |
|
@ -164,10 +156,8 @@ jobs: |
|
|
sudo apt-get update |
|
|
sudo apt-get update |
|
|
sudo apt-get install build-essential |
|
|
sudo apt-get install build-essential |
|
|
|
|
|
|
|
|
- name: generate a makefile and use it to install more packages |
|
|
- name: Install required packages |
|
|
run: | |
|
|
run: | |
|
|
./autogen.sh |
|
|
|
|
|
./configure |
|
|
|
|
|
make build-dep |
|
|
make build-dep |
|
|
shell: bash |
|
|
shell: bash |
|
|
|
|
|
|
|
@ -230,14 +220,12 @@ jobs: |
|
|
git fetch --force --tags |
|
|
git fetch --force --tags |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install packages |
|
|
- name: Install essential |
|
|
run: | |
|
|
run: | |
|
|
brew install automake |
|
|
brew install automake |
|
|
|
|
|
|
|
|
- name: generate a makefile and use it to install more packages |
|
|
- name: Install required packages |
|
|
run: | |
|
|
run: | |
|
|
./autogen.sh |
|
|
|
|
|
./configure |
|
|
|
|
|
make build-dep |
|
|
make build-dep |
|
|
shell: bash |
|
|
shell: bash |
|
|
|
|
|
|
|
|