Skip to content

Commit

Permalink
Some small fixes to the CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
NWilson committed Dec 8, 2024
1 parent 4045b9f commit 734f244
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,9 @@ jobs:
maint/RunPerlTest
chaffinch:
# Job to verify that the CMake "unity" build (single-file / jumbo build) passes.
# If this fails, it's usually because two different files define some file-static
# functions or macros which collide.
name: CMake unity build
runs-on: ubuntu-latest
steps:
Expand All @@ -250,13 +253,18 @@ jobs:
run: cd build && ctest -j3 --output-on-failure

heron:
# Job to verify that the tasks performed by PrepareRelease have been done. It is
# the committer's responsibility (currently) to run PrepareRelease themselves when
# making a PR, so that everything is kept in-sync.
name: Check for PrepareRelease cleanliness
runs-on: ubuntu-latest
runs-on: ubuntu-24.04 # TODO: Update to ubuntu-latest when that switches to 24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: false
fetch-depth: 0
fetch-tags: false

- name: PrepareRelease
run: maint/PrepareRelease
Expand Down
4 changes: 2 additions & 2 deletions maint/PrepareRelease
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ echo "Making pcre2demo.3"
perl <<"END" >pcre2demo.3
use Time::Piece;
open(VH, "<", "../src/config.h.generic") || die "Failed to open src/config.h.generic\n";
open(IN, "../src/pcre2demo.c") || die "Failed to open src/pcre2demo.c\n";
open(OUT, ">pcre2demo.3") || die "Failed to open pcre2demo.3\n";
open(IN, "<", "../src/pcre2demo.c") || die "Failed to open src/pcre2demo.c\n";
open(OUT, ">", "pcre2demo.3") || die "Failed to open pcre2demo.3\n";
my $version;
while (<VH>)
{
Expand Down

0 comments on commit 734f244

Please sign in to comment.