.github/workflows: fix glibc issues in installer.yml

Fix glibc incompatibility issues between older ubuntu versions and the
newer checkout@v4 actions by selectively using the older checkout@v3
code for these targets.

Updates #cleanup
patrickod/installer-yml-fixup
Patrick O'Doherty 2 months ago
parent 7f4cda23ac
commit 4de947ce7e
No known key found for this signature in database

@ -6,12 +6,13 @@ on:
- "main" - "main"
paths: paths:
- scripts/installer.sh - scripts/installer.sh
- .github/workflows/installer.yml
pull_request: pull_request:
branches: branches:
- "*" - "*"
paths: paths:
- scripts/installer.sh - scripts/installer.sh
- .github/workflows/installer.yml
jobs: jobs:
test: test:
strategy: strategy:
@ -32,12 +33,10 @@ jobs:
- "ubuntu:18.04" - "ubuntu:18.04"
- "ubuntu:20.04" - "ubuntu:20.04"
- "ubuntu:22.04" - "ubuntu:22.04"
- "ubuntu:22.10"
- "ubuntu:23.04" - "ubuntu:23.04"
- "elementary/docker:stable" - "elementary/docker:stable"
- "elementary/docker:unstable" - "elementary/docker:unstable"
- "parrotsec/core:lts-amd64" - "parrotsec/core:lts-amd64"
- "parrotsec/core:latest"
- "kalilinux/kali-rolling" - "kalilinux/kali-rolling"
- "kalilinux/kali-dev" - "kalilinux/kali-dev"
- "oraclelinux:9" - "oraclelinux:9"
@ -68,35 +67,35 @@ jobs:
image: ${{ matrix.image }} image: ${{ matrix.image }}
options: --user root options: --user root
steps: steps:
- name: install dependencies (yum) - name: install dependencies (yum)
# tar and gzip are needed by the actions/checkout below. # tar and gzip are needed by the actions/checkout below.
run: yum install -y --allowerasing tar gzip ${{ matrix.deps }} run: yum install -y --allowerasing tar gzip ${{ matrix.deps }}
if: | if: |
contains(matrix.image, 'centos') contains(matrix.image, 'centos')
|| contains(matrix.image, 'oraclelinux') || contains(matrix.image, 'oraclelinux')
|| contains(matrix.image, 'fedora') || contains(matrix.image, 'fedora')
|| contains(matrix.image, 'amazonlinux') || contains(matrix.image, 'amazonlinux')
- name: install dependencies (zypper) - name: install dependencies (zypper)
# tar and gzip are needed by the actions/checkout below. # tar and gzip are needed by the actions/checkout below.
run: zypper --non-interactive install tar gzip ${{ matrix.deps }} run: zypper --non-interactive install tar gzip ${{ matrix.deps }}
if: contains(matrix.image, 'opensuse') if: contains(matrix.image, 'opensuse')
- name: install dependencies (apt-get) - name: install dependencies (apt-get)
run: | run: |
apt-get update apt-get update
apt-get install -y ${{ matrix.deps }} apt-get install -y ${{ matrix.deps }}
if: | if: |
contains(matrix.image, 'debian') contains(matrix.image, 'debian')
|| contains(matrix.image, 'ubuntu') || contains(matrix.image, 'ubuntu')
|| contains(matrix.image, 'elementary') || contains(matrix.image, 'elementary')
|| contains(matrix.image, 'parrotsec') || contains(matrix.image, 'parrotsec')
|| contains(matrix.image, 'kalilinux') || contains(matrix.image, 'kalilinux')
- name: checkout - name: checkout v4
uses: actions/checkout@v4 uses: actions/checkout@v3
- name: run installer - name: run installer
run: scripts/installer.sh run: scripts/installer.sh
# Package installation can fail in docker because systemd is not running # Package installation can fail in docker because systemd is not running
# as PID 1, so ignore errors at this step. The real check is the # as PID 1, so ignore errors at this step. The real check is the
# `tailscale --version` command below. # `tailscale --version` command below.
continue-on-error: true continue-on-error: true
- name: check tailscale version - name: check tailscale version
run: tailscale --version run: tailscale --version

Loading…
Cancel
Save