Skip to content

Commit

Permalink
PR-CI/CD experiment status (#98)
Browse files Browse the repository at this point in the history
* Matching quac system test

* Re-enable synchronize

* Experimenting with a conditional to prevent running jobs multiple times
on push and pull requests yet still run for PR's for forks.

* Experimenting with the double trigger. (#97)

* Experimenting with the double trigger.

* Tagging the version of ubuntu being used for ubuntu-latest for consistentcy.
ubuntu-22.04 is the current long term support (LTS) version.

* Update common-static-analysis.yml

Signed-off-by: Angelina Uno-Antonison <ange.unoantonison@gmail.com>

* Apply suggestions from code review

Co-authored-by: James Scherer <jscherer@uab.edu>
Signed-off-by: Angelina Uno-Antonison <angelina.antonison@gmail.com>

* Update README.md

Removed line causing the linting to break.

Signed-off-by: Angelina Uno-Antonison <angelina.antonison@gmail.com>

---------

Signed-off-by: Angelina Uno-Antonison <ange.unoantonison@gmail.com>
Signed-off-by: Angelina Uno-Antonison <angelina.antonison@gmail.com>
Co-authored-by: James Scherer <jscherer@uab.edu>

---------

Signed-off-by: Angelina Uno-Antonison <ange.unoantonison@gmail.com>
Signed-off-by: Angelina Uno-Antonison <angelina.antonison@gmail.com>
Co-authored-by: James Scherer <jscherer@uab.edu>
  • Loading branch information
SeriousHorncat and JmScherer authored Jun 26, 2023
1 parent a048f50 commit 90e17d6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
build-and-push-image:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/common-static-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Markdown, Docker, and Shell Static Analysis

on: [push, pull_request, workflow_dispatch]

env:
Expand All @@ -10,7 +9,8 @@ env:

jobs:
docker-shell-markdown-static-analysis:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft-paper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
paper:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: JOSS pandoc paper draft
steps:
- name: Checkout
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ defaults:
jobs:
nodejs-ci:

runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name

strategy:
matrix:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ env:
jobs:
python-ci:

runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name

strategy:
fail-fast: false
matrix:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on: [push, pull_request, workflow_dispatch]

jobs:
system-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 90e17d6

Please sign in to comment.