Skip to content
This repository was archived by the owner on Sep 7, 2024. It is now read-only.
Open
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
18 changes: 6 additions & 12 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,19 @@ on:

jobs:
build:
strategy:
matrix:
os: [alpine, debian, rocky, ubuntu]

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: ubuntu
uses: addnab/docker-run-action@v3
with:
options: -v ${{ github.workspace }}:/usr/src/pam_aad
image: ghcr.io/aad-for-linux/pam_aad:ubuntu
run: |
cd /usr/src/pam_aad
./bootstrap.sh
./configure
make
- name: alpine
- name: ${{ matrix.os }}
uses: addnab/docker-run-action@v3
with:
options: -v ${{ github.workspace }}:/usr/src/pam_aad
image: ghcr.io/aad-for-linux/pam_aad:alpine
image: ghcr.io/aad-for-linux/pam_aad:${{ matrix.os }}
run: |
cd /usr/src/pam_aad
./bootstrap.sh
Expand Down