Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test apk and arch #956

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/docker-ci/arch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM archlinux:base-20220529.0.58327
FROM archlinux/archlinux:base-20221113.0.102202

LABEL maintainer="[email protected]"
LABEL vendor="git-secret team"
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/build-man.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ on:
- 'docs/**/*'
workflow_dispatch:

concurrency:
group: ${{ github.head_ref || github.run_id }}-build-man
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,18 @@ on:
- 'docs/**/*'
- 'utils/*/install.sh'

concurrency:
group: ${{ github.head_ref || github.run_id }}
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v3
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ on:
- 'Makefile'
- '.github/workflows/release-ci.yml'

permissions:
contents: read

concurrency:
group: ${{ github.head_ref || github.run_id }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
Expand All @@ -41,8 +44,8 @@ jobs:
release-env: rocky
- release-type: rpm
release-env: alma
#- release-type: apk # temp removal of alpine releases for #881
# release-env: alpine # temp removal of alpine releases for #881
# - release-type: apk # see #881
# release-env: alpine

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:

concurrency:
group: ${{ github.head_ref || github.run_id }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

jobs:
release-packages:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ on:
- 'docs/**'
workflow_dispatch:

concurrency:
group: ${{ github.head_ref || github.run_id }}-test
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
Expand All @@ -30,7 +33,7 @@ jobs:
docker-env:
- alma
- alpine
#- arch # disable arch testing for now, see #916
- arch
- debian-gnupg1 # We need to test legacy version of gnupg
- debian-gnupg2
- fedora
Expand Down Expand Up @@ -63,10 +66,7 @@ jobs:
with:
usesh: true
prepare: pkg install -y gnupg bash gmake git gawk
run: |
which -a bash
which -a shell
gmake test
run: gmake test

windows-wsl-ci:
runs-on: windows-latest
Expand Down