Skip to content

Commit

Permalink
Merge pull request #8 from zebrium/7-support-fluent-package-5-lts
Browse files Browse the repository at this point in the history
7 support fluent package 5 lts
  • Loading branch information
b3arpsl authored Oct 12, 2023
2 parents eb50207 + ee10016 commit a1d77ce
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 64 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: test

on:
pull_request:

permissions:
contents: read

Expand All @@ -14,12 +14,12 @@ jobs:
os:
- ubuntu:jammy
- ubuntu:focal
- ubuntu:bionic
- debian:bullseye
- debian:buster
- oraclelinux:9
- oraclelinux:8
- oraclelinux:7
- amazonlinux:2
- amazonlinux:2023
runs-on: ubuntu-latest
container:
image: ${{ matrix.os }}
Expand All @@ -39,10 +39,16 @@ jobs:
apt-get -qq update
apt-get -qq install -y apt-transport-https
- name: Install Dependencies RPM
if: ${{ contains( matrix.os, 'oracle') || contains(matrix.os, 'redhat' ) }}
if: ${{ contains( matrix.os, 'oracle') || contains(matrix.os, 'redhat' )}}
run: |
yum -q update -y
yum -q install -y git sudo
- name: Install Dependencies RPM Amazon
if: ${{ contains(matrix.os, 'amazon' ) }}
run: |
yum -q update -y
yum -q install -y git sudo tar
- uses: actions/checkout@v3
- run: git config --system --add safe.directory $GITHUB_WORKSPACE
- run: ./install_collector.sh
Loading

0 comments on commit a1d77ce

Please sign in to comment.