mirror of
https://github.com/xcat2/xcat-core.git
synced 2026-07-31 10:09:40 +00:00
f9717ea8da
On the ubuntu-24.04 runner, dpkg-buildpackage aborted every xcat-core package with 'Unmet build dependencies: build-essential:native', so zero debs were produced, reprepro created no dists/noble, and 'apt-get update' against the local file: repo failed with 'dists/noble/.../Packages File not found' -> install_xcat failed. Add build-essential to the workflow dependency install so the local package repo is actually built.
13 lines
567 B
YAML
13 lines
567 B
YAML
name: xcat_test
|
|
on: [pull_request, workflow_dispatch]
|
|
jobs:
|
|
xcat_pr_test:
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 60
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Install dependencies
|
|
run: sudo apt-get install -y --no-install-recommends --no-install-suggests build-essential fakeroot reprepro devscripts debhelper libcapture-tiny-perl libjson-perl libsoap-lite-perl libdbi-perl libcgi-pm-perl quilt openssh-server dpkg looptools genometools software-properties-common
|
|
- name: Run tests
|
|
run: perl github_action_xcat_test.pl
|