mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
Merge #6210: ci: add more hosts to Github Actions
cb3ac4656b
ci: add more hosts to Github Actions (pasta) Pull request description: ## Issue being fixed or feature implemented Add more linux hosts to GitHub Actions CI. This builds and runs tests (unit) on all these. Functional tests and Mac / Windows should be coming in the future ## How Has This Been Tested? https://github.com/PastaPastaPasta/dash/actions/runs/10364729979 ## Breaking Changes None ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: UdjinM6: utACKcb3ac4656b
Tree-SHA512: c9e13d2cf53c12100905bec4b444b9750879733ec42e1f37265c5f2dda416071324c6a181df3fcf35b2a8eeb78ddaf8ed109cbd914be6b2c43916e8feaba25c2
This commit is contained in:
commit
6eb6982f41
34
.github/workflows/build.yml
vendored
34
.github/workflows/build.yml
vendored
@ -58,10 +58,26 @@ jobs:
|
|||||||
needs: build-image
|
needs: build-image
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- build_target: arm-linux
|
- build_target: arm-linux
|
||||||
host: arm-linux-gnueabihf
|
host: arm-linux-gnueabihf
|
||||||
|
- build_target: linux64
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_tsan
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_ubsan
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_fuzz
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_cxx20
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_sqlite
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_nowallet
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
|
||||||
container:
|
container:
|
||||||
image: ghcr.io/${{ needs.build-image.outputs.repo-name }}/dashcore-ci-runner:${{ needs.build-image.outputs.image-tag }}
|
image: ghcr.io/${{ needs.build-image.outputs.repo-name }}/dashcore-ci-runner:${{ needs.build-image.outputs.image-tag }}
|
||||||
options: --user root
|
options: --user root
|
||||||
@ -91,11 +107,25 @@ jobs:
|
|||||||
needs: [build-image, build-depends]
|
needs: [build-image, build-depends]
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- build_target: arm-linux
|
- build_target: arm-linux
|
||||||
host: arm-linux-gnueabihf
|
host: arm-linux-gnueabihf
|
||||||
dep_opts: DEBUG=1
|
- build_target: linux64
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_tsan
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_ubsan
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_fuzz
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_cxx20
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_sqlite
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
|
- build_target: linux64_nowallet
|
||||||
|
host: x86_64-pc-linux-gnu
|
||||||
container:
|
container:
|
||||||
image: ghcr.io/${{ needs.build-image.outputs.repo-name }}/dashcore-ci-runner:${{ needs.build-image.outputs.image-tag }}
|
image: ghcr.io/${{ needs.build-image.outputs.repo-name }}/dashcore-ci-runner:${{ needs.build-image.outputs.image-tag }}
|
||||||
options: --user root
|
options: --user root
|
||||||
@ -144,7 +174,7 @@ jobs:
|
|||||||
- name: Upload build artifacts
|
- name: Upload build artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: build-artifacts
|
name: build-artifacts-${{ matrix.build_target }}
|
||||||
path: |
|
path: |
|
||||||
/output
|
/output
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user