Enable minimal build
Some checks failed
Builds / XTchain (full, linux) (push) Failing after 23s
Builds / XTchain (full, windows) (push) Failing after 21s
Builds / XTchain (minimal, linux) (push) Failing after 22s
Builds / XTchain (minimal, windows) (push) Failing after 22s

This commit is contained in:
Aiken Harris 2025-07-09 12:27:30 +02:00 committed by CodingWorkshop Signing Team
parent e2aa006f8d
commit 9d93103940
Signed by: CodingWorkshop Signing Team
GPG Key ID: 6DC88369C82795D2

View File

@ -3,18 +3,24 @@ run-name: ${{ github.actor }} runs Gitea Actions
on: [push] on: [push]
jobs: jobs:
XTChain: XTchain:
strategy: strategy:
matrix: matrix:
target: [linux, windows] target: [linux, windows]
build: [full, minimal]
runs-on: oscw runs-on: oscw
container: container:
image: codingworkshop/oscw-runner:latest image: codingworkshop/oscw-runner:latest
steps: steps:
- name: Clone repository - name: Clone repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Build XTChain - name: Build XTchain
run: ./build.sh --jobs=10 --target=${{ matrix.target }} run: |
if [ "${{ matrix.build }}" == "minimal" ]; then
./build.sh --jobs=10 --target=${{ matrix.target }} --minimal
else
./build.sh --jobs=10 --target=${{ matrix.target }}
fi
- name: Publish binaries - name: Publish binaries
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
env: env: