p2pool/.github/workflows/c-cpp.yml

184 lines
3.9 KiB
YAML
Raw Normal View History

2021-09-04 01:40:20 -06:00
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
2021-09-05 01:47:48 -06:00
build-ubuntu:
2021-09-04 01:40:20 -06:00
2021-09-07 07:49:55 -06:00
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-18.04]
2021-09-04 01:40:20 -06:00
steps:
- name: Install dependencies
run: sudo apt update && sudo apt install git build-essential cmake libuv1-dev libzmq3-dev libsodium-dev libpgm-dev libnorm-dev libgss-dev
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: true
2021-09-07 03:31:24 -06:00
- name: Build p2pool
run: |
mkdir build
cd build
cmake ..
make -j2
2021-09-04 01:40:20 -06:00
2021-09-07 03:31:24 -06:00
- name: Build tests
run: |
cd tests
mkdir build
cd build
cmake ..
make -j2
2021-09-04 01:40:20 -06:00
2021-09-07 03:31:24 -06:00
- name: Run tests
2021-09-04 01:40:20 -06:00
run: cd tests/build && ./p2pool_tests
2021-09-05 01:47:48 -06:00
2021-09-18 11:38:46 -06:00
- name: Archive binary
uses: actions/upload-artifact@v2
with:
name: p2pool-${{ matrix.os }}
path: build/p2pool
2021-09-05 01:47:48 -06:00
build-windows-msys2:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup MSYS2
uses: eine/setup-msys2@v2
with:
update: true
install: mingw-w64-x86_64-toolchain make mingw-w64-x86_64-cmake mingw-w64-x86_64-zeromq mingw-w64-x86_64-libsodium mingw-w64-x86_64-libuv
- name: Build p2pool
run: |
mkdir build
cd build
cmake .. -G "Unix Makefiles"
2021-09-05 05:37:31 -06:00
make -j2
2021-09-05 01:47:48 -06:00
- name: Build tests
run: |
cd tests
mkdir build
cd build
cmake .. -G "Unix Makefiles"
2021-09-05 05:37:31 -06:00
make -j2
2021-09-05 01:47:48 -06:00
- name: Run tests
run: |
cd tests/build
./p2pool_tests.exe
2021-09-18 11:38:46 -06:00
- name: Archive binary
uses: actions/upload-artifact@v2
with:
name: p2pool-msys2.exe
path: build/p2pool.exe
2021-09-05 01:47:48 -06:00
build-windows-msbuild:
2021-10-16 06:29:59 -06:00
runs-on: windows-${{ matrix.config.os }}
strategy:
matrix:
config:
- {vs: Visual Studio 16 2019, os: 2019, msbuild: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise\\MSBuild\\Current\\Bin\\amd64\\"}
- {vs: Visual Studio 17 2022, os: 2022, msbuild: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\Msbuild\\Current\\Bin\\amd64\\"}
2021-09-05 01:47:48 -06:00
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup cmake
uses: lukka/get-cmake@latest
- name: Build p2pool
run: |
mkdir build
cd build
2021-10-16 06:29:59 -06:00
cmake .. -G "${{ matrix.config.vs }}"
& "${{ matrix.config.msbuild }}msbuild" /m /p:Configuration=Release p2pool.vcxproj
2021-09-05 01:47:48 -06:00
- name: Build tests
run: |
cd tests
mkdir build
cd build
2021-10-16 06:29:59 -06:00
cmake .. -G "${{ matrix.config.vs }}"
& "${{ matrix.config.msbuild }}msbuild" /m /p:Configuration=Release p2pool_tests.vcxproj
2021-09-05 01:47:48 -06:00
- name: Run tests
run: |
cd tests/build/Release
./p2pool_tests.exe
2021-09-05 03:50:56 -06:00
2021-09-18 11:38:46 -06:00
- name: Archive binary
uses: actions/upload-artifact@v2
with:
2021-10-16 06:29:59 -06:00
name: p2pool-msbuild-${{ matrix.config.os }}.exe
2021-09-18 11:38:46 -06:00
path: build/Release/p2pool.exe
2021-09-05 03:50:56 -06:00
build-macos:
2021-09-07 07:49:55 -06:00
runs-on: ${{ matrix.os }}
2021-09-07 03:31:24 -06:00
2021-09-07 07:49:55 -06:00
strategy:
matrix:
os: [macos-latest, macos-11]
2021-09-07 03:31:24 -06:00
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install dependencies
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install cmake libuv zmq libpgm
- name: Build p2pool
run: |
mkdir build
cd build
cmake ..
make -j3
- name: Build tests
run: |
cd tests
mkdir build
cd build
cmake ..
make -j3
- name: Run tests
run: |
cd tests/build
./p2pool_tests
2021-09-18 11:38:46 -06:00
- name: Archive binary
uses: actions/upload-artifact@v2
with:
name: p2pool-${{ matrix.os }}
path: build/p2pool