Skip to content

Commit 77b11c8

Browse files
committed
Do Not Merge: disable CI for testing
This would not be part of the final PR just making the CI quieter and useful.
1 parent 9da0d2c commit 77b11c8

File tree

2 files changed

+55
-404
lines changed

2 files changed

+55
-404
lines changed

.github/workflows/lite.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: lite
2+
3+
on:
4+
push:
5+
branches:
6+
- "**"
7+
tags-ignore:
8+
- "*"
9+
pull_request:
10+
11+
jobs:
12+
13+
## -------------------------------------------------------------------------------------------
14+
## -------------------------------------------------------------------------------------------
15+
16+
linux:
17+
name: "linux ${{ matrix.configure }}"
18+
runs-on: ubuntu-latest
19+
timeout-minutes: 120
20+
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
configure:
25+
[
26+
"",
27+
"-Dusethreads",
28+
]
29+
env:
30+
PERL_SKIP_TTY_TEST: 1
31+
CONTINUOUS_INTEGRATION: 1
32+
WORKSPACE: ${{ github.workspace }}
33+
34+
steps:
35+
- name: Dump GitHub context
36+
env:
37+
GITHUB_CONTEXT: ${{ toJson(github) }}
38+
run: echo "$GITHUB_CONTEXT"
39+
- uses: actions/checkout@v2
40+
with:
41+
fetch-depth: 0
42+
- name: git cfg + fetch tags
43+
run: |
44+
git config diff.renameLimit 999999
45+
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
46+
- name: Configure
47+
run: |
48+
./Configure -des -Dusedevel ${{ matrix.configure }} -Dprefix="$HOME/perl-blead" -DDEBUGGING
49+
- name: Build
50+
run: |
51+
make -j2
52+
- name: Run Tests
53+
run: |
54+
TEST_JOBS=2 make -j2 test
55+

0 commit comments

Comments
 (0)