Skip to content

update conf and tune #309

update conf and tune

update conf and tune #309

Workflow file for this run

name: CI
on:
push:
branches: [ "6" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/eebssk1/bbk/debian-bookworm:latest
volumes:
- /root:/user
strategy:
matrix:
compiler: [llvm, gcc]
target: [desktop, server_large, server_small, server_small_2, server_small_a]
env:
GZIP: -8
steps:
- uses: actions/checkout@v2
- name: setup swap
run: exec ./swap.sh
- name: enable ccache
uses: hendrikmuhs/[email protected]
with:
verbose: 1
max-size: "960M"
key: ${{ matrix.target }}-${{ matrix.compiler }}-b3
- name: build
run: ./b.sh ${{ matrix.target }} ${{ matrix.compiler }}
- name: upload
uses: actions/upload-artifact@v4
with:
name: debs_${{ matrix.target }}-${{ matrix.compiler }}
path: "*.deb"
- name: release
uses: ncipollo/[email protected]
with:
allowUpdates: true
artifacts: "*.deb"
commit: 6
makeLatest: false
tag: ${{ env.VER }}-${{ matrix.compiler }}