bforce/.gitea/workflows/debpkg.yaml
Alexey Khromov 3c60f8de01
Some checks failed
Debian build / build (push) Failing after 2m57s
CI fx workflow 32
2025-04-13 17:48:39 +03:00

42 lines
1.2 KiB
YAML

name: Debian build
run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }} 🚀
on: [push]
jobs:
build:
runs-on: ubuntu-latest
branches:
- 'master'
- 'zx'
steps:
- name: Checking environment
continue-on-error: true
run: printenv
- name: Installing build-essentials
continue-on-error: false
run: |
apt update
apt install -y build-essential fakeroot devscripts debhelper pkg-config --no-install-recommends
- name: Installing dependencies
continue-on-error: false
run: |
echo '---- bison ----'
apt install -y bison
echo '---- tcl ------'
apt install -y tcl
- name: Cloning source
uses: actions/checkout@v4
- name: Building package
continue-on-error: false
run: |
pwd
echo '---------------------'
cd ${GITHUB_WORKSPACE}/debian
ls -l
debuild -us -uc -b
- name: Try to upload artifacts
uses: actions/upload-artifact@v3
with:
name: bforce
path: bforce*.deb
- run: echo "This job's over"