mirror of
https://github.com/monero-project/monero.git
synced 2025-01-19 09:14:48 +00:00
commit
0f13003917
1 changed files with 12 additions and 2 deletions
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
|
@ -29,6 +29,7 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-macos:
|
build-macos:
|
||||||
|
name: 'macOS (brew)'
|
||||||
runs-on: macOS-latest
|
runs-on: macOS-latest
|
||||||
env:
|
env:
|
||||||
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
||||||
|
@ -51,6 +52,7 @@ jobs:
|
||||||
make -j3
|
make -j3
|
||||||
|
|
||||||
build-windows:
|
build-windows:
|
||||||
|
name: 'Windows (MSYS2)'
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
env:
|
env:
|
||||||
CCACHE_TEMPDIR: C:\Users\runneradmin\.ccache-temp
|
CCACHE_TEMPDIR: C:\Users\runneradmin\.ccache-temp
|
||||||
|
@ -77,7 +79,7 @@ jobs:
|
||||||
make release-static-win64 -j4
|
make release-static-win64 -j4
|
||||||
|
|
||||||
build-debian:
|
build-debian:
|
||||||
name: 'build-debian (debian-10)'
|
name: 'Debian 10'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: debian:10
|
image: debian:10
|
||||||
|
@ -102,13 +104,18 @@ jobs:
|
||||||
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
|
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
|
||||||
|
|
||||||
build-ubuntu:
|
build-ubuntu:
|
||||||
|
name: ${{ matrix.name }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
env:
|
env:
|
||||||
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-22.04, ubuntu-20.04]
|
include:
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
name: Ubuntu 20.04
|
||||||
|
- os: ubuntu-22.04
|
||||||
|
name: Ubuntu 22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
@ -132,6 +139,7 @@ jobs:
|
||||||
${{env.BUILD_DEFAULT_LINUX}}
|
${{env.BUILD_DEFAULT_LINUX}}
|
||||||
|
|
||||||
libwallet-ubuntu:
|
libwallet-ubuntu:
|
||||||
|
name: "Ubuntu 20.04 (libwallet)"
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
env:
|
env:
|
||||||
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
||||||
|
@ -159,6 +167,7 @@ jobs:
|
||||||
make wallet_api -j4
|
make wallet_api -j4
|
||||||
|
|
||||||
test-ubuntu:
|
test-ubuntu:
|
||||||
|
name: "Ubuntu 20.04 (tests)"
|
||||||
needs: build-ubuntu
|
needs: build-ubuntu
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
env:
|
env:
|
||||||
|
@ -196,6 +205,7 @@ jobs:
|
||||||
# BUILD_SHARED_LIBS=ON speeds up the linkage part a bit, reduces size, and is the only place where the dynamic linkage is tested.
|
# BUILD_SHARED_LIBS=ON speeds up the linkage part a bit, reduces size, and is the only place where the dynamic linkage is tested.
|
||||||
|
|
||||||
source-archive:
|
source-archive:
|
||||||
|
name: "source archive"
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
Loading…
Reference in a new issue