Skip to content

Commit 3c9104b

Browse files
authored
Merge pull request #3071 from metacpan/haarg/build-normalize
Try to normalize the github workflows
2 parents bdd23aa + cf6def9 commit 3c9104b

11 files changed

+160
-144
lines changed

.github/workflows/automerge.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Maybe Enable Auto-Merge
1+
name: Enable Auto-Merge For metacpan-automation
22
on:
33
pull_request_target:
44
types: [opened]
@@ -9,12 +9,12 @@ jobs:
99
if: github.event.pull_request.user.login == 'metacpan-automation[bot]'
1010
steps:
1111
- name: Generate Auth Token
12-
id: auth-token
13-
uses: jamestrousdale/github-app-jwt-token@0.1.4
12+
uses: actions/create-github-app-token@v1
13+
id: app-token
1414
with:
1515
app-id: ${{ secrets.APP_ID }}
1616
private-key: ${{ secrets.APP_PRIVATE_KEY }}
1717
- uses: peter-evans/enable-pull-request-automerge@v3
1818
with:
19-
token: ${{ steps.auth-token.outputs.access-token }}
19+
token: ${{ steps.app-token.outputs.token }}
2020
pull-request-number: ${{ github.event.pull_request.number }}

.github/workflows/build-container.yml

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: Build container
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- staging
7+
- prod
8+
pull_request:
9+
branches:
10+
- master
11+
workflow_dispatch:
12+
jobs:
13+
docker:
14+
runs-on: ubuntu-22.04
15+
name: Docker Build and Push
16+
steps:
17+
- name: Generate Auth Token
18+
uses: actions/create-github-app-token@v1
19+
id: app-token
20+
with:
21+
app-id: ${{ secrets.APP_ID }}
22+
private-key: ${{ secrets.APP_PRIVATE_KEY }}
23+
- name: Log in to Docker Hub
24+
uses: docker/login-action@v3
25+
with:
26+
username: ${{ secrets.DOCKER_HUB_USER }}
27+
password: ${{ secrets.DOCKER_HUB_TOKEN }}
28+
- name: Set up Docker Buildx
29+
uses: docker/setup-buildx-action@v3
30+
- uses: actions/checkout@v4
31+
with:
32+
token: ${{ steps.app-token.outputs.token }}
33+
- name: Build test image
34+
id: docker-build-test
35+
uses: docker/build-push-action@v5
36+
with:
37+
target: test
38+
push: false
39+
load: true
40+
- name: Run Perl tests
41+
run: docker run -i ${{ steps.docker-build-test.outputs.imageid }}
42+
- name: Docker meta
43+
id: meta
44+
uses: docker/metadata-action@v5
45+
with:
46+
images: ${{ github.repository }}
47+
flavor: |
48+
latest=false
49+
tags: |
50+
type=sha,format=long,priority=2000
51+
type=ref,event=branch
52+
type=ref,event=pr
53+
type=raw,value=latest,enable={{is_default_branch}}
54+
env:
55+
DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index
56+
- name: Build and push
57+
uses: docker/build-push-action@v5
58+
with:
59+
push: true
60+
tags: ${{ steps.meta.outputs.tags }}
61+
labels: ${{ steps.meta.outputs.labels }}
62+
annotations: ${{ steps.meta.outputs.annotations }}
63+
- name: Update deployed image
64+
if: ${{ contains( fromJSON(steps.meta.outputs.json).tags, format('{0}:latest', github.repository)) }}
65+
uses: benc-uk/workflow-dispatch@v1
66+
with:
67+
repo: metacpan/metacpan-k8s
68+
ref: main
69+
workflow: set-image.yml
70+
token: ${{ steps.app-token.outputs.token }}
71+
inputs: '{ "app": "web", "environment": "prod", "base-tag": "${{ github.repository }}:latest", "tag": "${{ fromJSON(steps.meta.outputs.json).tags[0] }}" }'

.github/workflows/build-deployment-container.yml

-32
This file was deleted.

.github/workflows/build-production-container.yml

-47
This file was deleted.

.github/workflows/test.yml

+51-31
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,60 @@ on:
1010
workflow_dispatch:
1111

1212
jobs:
13+
code-formatting:
14+
runs-on: ubuntu-22.04
15+
name: Code Formatting
16+
steps:
17+
- uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
20+
- name: Fetch base ref
21+
if: ${{ github.event.pull_request }}
22+
run: git fetch origin ${{ github.base_ref }}:upstream
23+
- run: npm install
24+
- name: Install Carton
25+
uses: perl-actions/install-with-cpm@v1
26+
with:
27+
install: Carton
28+
- name: Install CPAN deps
29+
uses: perl-actions/install-with-cpm@v1
30+
with:
31+
cpanfile: 'cpanfile'
32+
args: >
33+
--resolver=snapshot
34+
--without-runtime
35+
--without-test
36+
--without-build
37+
--with-develop
38+
- name: Install precious
39+
run: ./bin/install-precious /usr/local/bin
40+
- name: Lint modified files
41+
if: ${{ github.event.pull_request }}
42+
run: precious lint --git-diff-from upstream
43+
- name: Lint all files
44+
if: ${{ ! github.event.pull_request }}
45+
run: precious lint --all
1346
docker:
1447
runs-on: ubuntu-22.04
1548
name: Docker
1649
steps:
17-
- uses: actions/checkout@v4
18-
- name: docker build
19-
run: docker build . --target test -t metacpan/metacpan-web:latest
20-
- name: run Perl tests
21-
run: >
22-
docker run -i metacpan/metacpan-web
23-
carton exec prove -lr --jobs 2 t
50+
- name: Build test image
51+
id: docker-build-test
52+
uses: docker/build-push-action@v5
53+
with:
54+
target: test
55+
push: false
56+
load: true
57+
- name: Run Perl tests
58+
run: docker run -i ${{ steps.docker-build-test.outputs.imageid }}
2459
test:
2560
runs-on: ubuntu-20.04
2661
name: Dockerless
2762
strategy:
2863
fail-fast: false
2964
matrix:
3065
perl-version:
31-
- '5.30'
66+
- '5.36'
3267
resolver:
3368
- snapshot
3469
- metacpan
@@ -38,14 +73,12 @@ jobs:
3873
DEVEL_COVER_OPTIONS: '-ignore,^local/'
3974
steps:
4075
- uses: actions/checkout@v4
41-
with:
42-
fetch-depth: 0
4376
if: matrix.resolver == 'snapshot'
4477
- uses: actions/checkout@v4
4578
if: matrix.resolver != 'snapshot'
4679
- uses: actions/setup-node@v4
4780
with:
48-
node-version: '18'
81+
node-version: '22'
4982
- run: npm install
5083
- run: apt-get update && apt-get -y install libcmark-dev
5184
- name: Install Carton
@@ -60,8 +93,6 @@ jobs:
6093
sudo: false
6194
args: >
6295
--resolver ${{ matrix.resolver }}
63-
--show-build-log-on-failure
64-
--local-lib-contained=local
6596
- name: Build assets
6697
run: npm run build
6798
- name: Run tests without coverage
@@ -75,30 +106,19 @@ jobs:
75106
with:
76107
install: |
77108
Devel::Cover
78-
Devel::Cover::Report::Codecov
79109
Devel::Cover::Report::Codecovbash
80110
sudo: false
81111
- name: Run tests with coverage
82112
if: matrix.resolver == 'snapshot'
83113
run: carton exec prove -lr --jobs 2 t
84114
env:
85115
HARNESS_PERL_SWITCHES: -MDevel::Cover=+ignore,^t/
86-
- name: Upload coverage reports to Codecov
116+
- name: Generate Codecov report
87117
if: matrix.resolver == 'snapshot'
88-
run: cover -report codecov
89-
env:
90-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
91-
- name: Install precious
92-
run: ./bin/install-precious /usr/local/bin
93-
- name: Install perlimports
94-
run: cpm install -g App::perlimports
118+
run: cover -report codecovbash
119+
- uses: codecov/codecov-action@v4
95120
if: matrix.resolver == 'snapshot'
96-
- name: Fetch master
97-
run: git fetch origin master:master
98-
if: github.ref != 'refs/heads/master' && matrix.resolver == 'snapshot'
99-
- name: Lint files in diff (branch)
100-
run: precious lint -d master
101-
if: github.ref != 'refs/heads/master' && matrix.resolver == 'snapshot'
102-
- name: Lint all files (master)
103-
run: precious lint --all
104-
if: github.ref == 'refs/heads/master' && matrix.resolver == 'snapshot'
121+
with:
122+
fail_ci_if_error: true
123+
file: ./cover_db/codecov.json
124+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/update-snapshot.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ jobs:
88
runs-on: 'ubuntu-20.04'
99
steps:
1010
- name: Generate Auth Token
11-
id: auth-token
12-
uses: jamestrousdale/github-app-jwt-token@0.1.4
11+
uses: actions/create-github-app-token@v1
12+
id: app-token
1313
with:
1414
app-id: ${{ secrets.APP_ID }}
1515
private-key: ${{ secrets.APP_PRIVATE_KEY }}
1616
- id: git-user
1717
name: Set up git user
1818
uses: haarg/setup-git-user@v1
1919
with:
20-
jwt: ${{ steps.auth-token.outputs.jwt }}
20+
app: ${{ steps.app-token.outputs.app-slug }}
2121
- uses: actions/checkout@v4
2222
with:
23-
token: ${{ steps.auth-token.outputs.access-token }}
23+
token: ${{ steps.app-token.outputs.token }}
2424
- name: Set up installation local::lib
2525
run: |
2626
mkdir -p $RUNNER_TEMP/perl5/bin
@@ -64,12 +64,13 @@ jobs:
6464
--resolver metacpan
6565
--show-build-log-on-failure
6666
--local-lib-contained=local
67+
--with-develop
6768
- name: Maybe update cpanfile.snapshot
6869
run: carton
6970
- name: Create Pull Request
7071
uses: peter-evans/create-pull-request@v6
7172
with:
72-
token: ${{ steps.auth-token.outputs.access-token }}
73+
token: ${{ steps.app-token.outputs.token }}
7374
commit-message: Update cpanfile.snapshot
7475
title: Update cpanfile.snapshot
7576
author: ${{ steps.git-user.outputs.user-full }}

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN \
3636
apt-get satisfy -y -f --no-install-recommends 'libcmark-dev (>= 0.30.2)'
3737
EOT
3838

39-
WORKDIR /metacpan-web/
39+
WORKDIR /app/
4040

4141
COPY cpanfile cpanfile.snapshot ./
4242
RUN \
@@ -47,8 +47,8 @@ EOT
4747

4848
RUN mkdir var && chown metacpan:users var
4949

50-
ENV PERL5LIB="/metacpan-web/local/lib/perl5"
51-
ENV PATH="/metacpan-web/local/bin:${PATH}"
50+
ENV PERL5LIB="/app/local/lib/perl5"
51+
ENV PATH="/app/local/bin:${PATH}"
5252

5353
COPY *.md app.psgi *.conf ./
5454
COPY bin bin

codecov.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
comment:
33
layout: 'diff, files'
44
behavior: default
5-
require_changes: true # if true: only post the comment if coverage changes
6-
require_base: false # [true :: must have a base report to post]
7-
require_head: true # [true :: must have a head report to post]
8-
hide_project_coverage: false # [true :: only show coverage on the git diff]
5+
require_changes: true # if true: only post the comment if coverage changes
6+
require_base: false # [true :: must have a base report to post]
7+
require_head: true # [true :: must have a head report to post]
8+
hide_project_coverage: false # [true :: only show coverage on the git diff]
99
coverage:
1010
status:
1111
patch:

0 commit comments

Comments
 (0)