Skip to content

Commit

Permalink
Move from Travis to GitHub Actions
Browse files Browse the repository at this point in the history
 * Due to rate limiting restrictions in Travis, move to GitHub Actions

Signed-off-by: Joshua Hursey <jhursey@us.ibm.com>
  • Loading branch information
jjhursey committed Mar 3, 2021
1 parent cc28cc3 commit 5124cc0
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 16 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-ci.yml
@@ -0,0 +1,25 @@
name: PMIx Standard CI

on:
pull_request:
# We don't need this to be run on all types of PR behavior
# See
# - https://docs.github.com/en/actions/reference/events-that-trigger-workflows#pull_request
# - https://frontside.com/blog/2020-05-26-github-actions-pull_request
types:
- opened
- synchronize
- edited
- reopened

jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out the code
uses: actions/checkout@v1
# Run the container tester
- name: Build and Test
run: docker run --rm -v ${GITHUB_WORKSPACE}:/home/pmixer/pmix-standard jjhursey/pmix-standard /bin/bash -c "cp -R /home/pmixer/pmix-standard pmix-build && cd pmix-build && make"
shell: bash
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit 5124cc0

Please sign in to comment.