compatibility check #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: compatibility check | ||
on: [push] | ||
jobs: | ||
mingw: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: debian:bookworm | ||
steps: | ||
- name: Install dependencies | ||
run: | | ||
apt update | ||
apt install -y build-essential pkg-config autoconf libtool ccache make cmake gcc g++ git curl lbzip2 libtinfo5 gperf gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 gcc-mingw-w64-i686 g++-mingw-w64-i686 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
submodules: recursive | ||
- name: Patch sources | ||
run: | | ||
git config --global --add safe.directory '*' | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CI mrcyjanek.net" | ||
./apply_patches.sh monero | ||
./apply_patches.sh wownero | ||
- name: monero/x86_64-w64-mingw32 | ||
run: ./build_single.sh monero x86_64-w64-mingw32 -j$(nproc) | ||
- name: wownero/x86_64-w64-mingw32 | ||
run: ./build_single.sh wownero x86_64-w64-mingw32 -j$(nproc) | ||
- name: monero/i686-w64-mingw32 | ||
run: ./build_single.sh monero i686-w64-mingw32 -j$(nproc) | ||
- name: wownero/i686-w64-mingw32 | ||
run: ./build_single.sh wownero i686-w64-mingw32 -j$(nproc) | ||
- name: rename artifacts | ||
run: | | ||
mkdir release/gh/ | ||
for i in release/monero/* | ||
do | ||
mv "$i" "release/gh/monero_$(basename $i)" | ||
done | ||
- name: Release | ||
uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: release/gh/* | ||
android: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: debian:bookworm | ||
steps: | ||
- name: Install dependencies | ||
run: | | ||
apt update | ||
apt install -y build-essential pkg-config autoconf libtool ccache make cmake gcc g++ git curl lbzip2 libtinfo5 gperf unzip python-is-python3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
submodules: recursive | ||
- name: Patch sources | ||
run: | | ||
git config --global --add safe.directory '*' | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CI mrcyjanek.net" | ||
./apply_patches.sh monero | ||
./apply_patches.sh wownero | ||
- name: monero/x86_64-linux-android | ||
run: ./build_single.sh monero x86_64-linux-android -j$(nproc) | ||
- name: wownero/x86_64-linux-android | ||
run: ./build_single.sh wownero x86_64-linux-android -j$(nproc) | ||
- name: monero/aarch64-linux-android | ||
run: ./build_single.sh monero aarch64-linux-android -j$(nproc) | ||
- name: wownero/aarch64-linux-android | ||
run: ./build_single.sh wownero aarch64-linux-android -j$(nproc) | ||
- name: monero/arm-linux-androideabi | ||
run: ./build_single.sh monero arm-linux-androideabi -j$(nproc) | ||
- name: wownero/arm-linux-androideabi | ||
run: ./build_single.sh wownero arm-linux-androideabi -j$(nproc) | ||
- name: rename artifacts | ||
run: | | ||
mkdir release/gh/ | ||
for i in release/monero/* | ||
do | ||
mv "$i" "release/gh/monero_$(basename $i)" | ||
done | ||
- name: Release | ||
uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: release/gh/* | ||
linux: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: debian:bookworm | ||
steps: | ||
- name: Install dependencies | ||
run: | | ||
apt update | ||
apt install -y build-essential pkg-config autoconf libtool ccache make cmake gcc g++ git curl lbzip2 libtinfo5 gperf gcc-aarch64-linux-gnu g++-aarch64-linux-gnu gcc-i686-linux-gnu g++-i686-linux-gnu | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
submodules: recursive | ||
- name: Patch sources | ||
run: | | ||
git config --global --add safe.directory '*' | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CI mrcyjanek.net" | ||
./apply_patches.sh monero | ||
./apply_patches.sh wownero | ||
- name: monero/x86_64-linux-gnu | ||
run: ./build_single.sh monero x86_64-linux-gnu -j$(nproc) | ||
- name: wownero/x86_64-linux-gnu | ||
run: ./build_single.sh wownero x86_64-linux-gnu -j$(nproc) | ||
- name: monero/aarch64-linux-gnu | ||
run: ./build_single.sh monero aarch64-linux-gnu -j$(nproc) | ||
- name: wownero/aarch64-linux-gnu | ||
run: ./build_single.sh wownero aarch64-linux-gnu -j$(nproc) | ||
- name: monero/i686-linux-gnu | ||
run: ./build_single.sh monero i686-linux-gnu -j$(nproc) | ||
- name: wownero/i686-linux-gnu | ||
run: ./build_single.sh wownero i686-linux-gnu -j$(nproc) | ||
- name: rename artifacts | ||
run: | | ||
mkdir release/gh/ | ||
for i in release/monero/* | ||
do | ||
mv "$i" "release/gh/monero_$(basename $i)" | ||
done | ||
- name: Release | ||
uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: release/gh/* |