Skip to content

Commit

Permalink
Do Not Merge: disable CI for testing
Browse files Browse the repository at this point in the history
This would not be part of the final PR
just making the CI quieter and useful.
  • Loading branch information
atoomic committed Jul 31, 2020
1 parent d4575b2 commit 2d608be
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 404 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/lite.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: lite

on:
push:
branches:
- "**"
tags-ignore:
- "*"
pull_request:

jobs:

## -------------------------------------------------------------------------------------------
## -------------------------------------------------------------------------------------------

linux:
name: "linux ${{ matrix.configure }}"
runs-on: ubuntu-latest
timeout-minutes: 120

strategy:
fail-fast: false
matrix:
configure:
[
"",
"-Dusethreads",
]
env:
PERL_SKIP_TTY_TEST: 1
CONTINUOUS_INTEGRATION: 1
WORKSPACE: ${{ github.workspace }}

steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: git cfg + fetch tags
run: |
git config diff.renameLimit 999999
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Configure
run: |
./Configure -des -Dusedevel ${{ matrix.configure }} -Dprefix="$HOME/perl-blead" -DDEBUGGING
- name: Build
run: |
make -j2
- name: Run Tests
run: |
TEST_JOBS=2 make -j2 test
Loading

0 comments on commit 2d608be

Please sign in to comment.