Skip to content

Commit

Permalink
Merge pull request #101 from stephengtuggy/feat/rocky-linux-9-etc
Browse files Browse the repository at this point in the history
GH Actions: Update set of Linux distros to build on
  • Loading branch information
stephengtuggy authored Mar 4, 2023
2 parents c87f993 + ac7b6a1 commit 281722e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/gh-actions-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,21 @@ jobs:
include:
# only do one Deb file because they're so large
- FROM: 'debian:buster'
- FROM: 'opensuse/leap'
- FROM: 'opensuse/leap:15.4'
- FROM: 'opensuse/leap:15.3'
- FROM: 'opensuse/leap:15.2'
- FROM: 'fedora:37'
- FROM: 'fedora:36'
- FROM: 'fedora:35'
- FROM: 'fedora:34'
- FROM: 'rockylinux/rockylinux'
- FROM: 'rockylinux:9.0'
- FROM: 'rockylinux:8.6'
- FROM: 'rockylinux:8.5'
- FROM: 'manjarolinux/base'

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
submodules: false

Expand Down
19 changes: 11 additions & 8 deletions .github/workflows/gh-actions-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,29 +21,32 @@ jobs:
# only build one Deb File b/c they're so large
- FROM: 'debian:buster'
ARTIFACT_EXT: 'deb'
- FROM: 'opensuse/leap'
- FROM: 'opensuse/leap:15.4'
ARTIFACT_EXT: 'rpm'
- FROM: 'opensuse/leap:15.3'
ARTIFACT_EXT: 'rpm'
- FROM: 'opensuse/leap:15.2'
ARTIFACT_EXT: 'rpm'
- FROM: 'fedora:37'
ARTIFACT_EXT: 'rpm'
- FROM: 'fedora:36'
ARTIFACT_EXT: 'rpm'
- FROM: 'fedora:35'
ARTIFACT_EXT: 'rpm'
- FROM: 'fedora:34'
- FROM: 'rockylinux:9.0'
ARTIFACT_EXT: 'rpm'
- FROM: 'rockylinux/rockylinux'
- FROM: 'rockylinux:8.6'
ARTIFACT_EXT: 'rpm'
- FROM: 'rockylinux:8.5'
ARTIFACT_EXT: 'rpm'

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
submodules: false

# where in a pull request we want to move to the head of the PR and not be at the
# merge commit; here we want to be at the HEAD of the ref

- name: Extract tag name etc
shell: bash
run: |
Expand Down

0 comments on commit 281722e

Please sign in to comment.