Skip to content

Commit

Permalink
see if fast enough for an obo-only build in GHA; work on #89
Browse files Browse the repository at this point in the history
  • Loading branch information
kltm committed Apr 11, 2022
1 parent cf271ea commit 22758e3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name: CI

# Controls when the action will run.
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
Expand All @@ -26,4 +26,4 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- run: make test
- run: make test-gha
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ OBO_SRCS = $(patsubst %,target/neo-%.obo,$(SRCS))
all_obo: $(OBO_SRCS)
test_obo: target $(patsubst %,target/neo-%.obo,$(TEST_SRCS))

## For future tests in a glorious future.
#test: touch_trigger test_obo
test-gha: neo.obo
echo "test disabled until GH is fast enough to allow data build"

## "Local" tests for full (expensive) data tests.
#test: touch_trigger test_obo
test:
echo "tests disabled until its easier to run perl on travis"
echo "test disabled until GH is fast enough to allow data build"

touch_trigger:
touch trigger
Expand Down

0 comments on commit 22758e3

Please sign in to comment.