Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Add sds as a submodule #31

Open
wants to merge 7 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
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- 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
Comment on lines +1 to +23
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't need this file.

3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "sds"]
path = sds
url = https://github.com/aad-for-linux/sds.git
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"files.associations": {
"pam_modules.h": "c",
"pam_appl.h": "c"
}
}
Comment on lines +1 to +6
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We do not need this file.

1 change: 1 addition & 0 deletions sds
Submodule sds added at fb4631