Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace Travis with GH actions #12

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 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
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on: push
sestrella marked this conversation as resolved.
Show resolved Hide resolved

jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: jwlawson/actions-setup-cmake@v1.13
with:
cmake-version: 3.x
sestrella marked this conversation as resolved.
Show resolved Hide resolved
- run: mkdir build
- run: cmake ..
working-directory: build
- run: make VERBOSE=1
working-directory: build
sestrella marked this conversation as resolved.
Show resolved Hide resolved
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pam\_reattach
[![Build Status](https://travis-ci.org/fabianishere/pam_reattach.svg?branch=master)](https://travis-ci.org/fabianishere/pam_reattach)
[![CI](https://github.com/fabianishere/pam_reattach/actions/workflows/ci.yml/badge.svg)](https://github.com/fabianishere/pam_reattach/actions/workflows/ci.yml)
=============
This is a PAM module for reattaching to the authenticating user's per-session
bootstrap namespace on macOS.
Expand Down