Skip to content

Commit

Permalink
HACK debug CI with tmate
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Feb 16, 2022
1 parent 3746a4c commit c734243
Showing 1 changed file with 57 additions and 53 deletions.
110 changes: 57 additions & 53 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,42 +7,42 @@ on:

jobs:
# The CI test job
test:
name: ${{ matrix.gap-branch }} ${{ matrix.ABI }} - HPC ${{ matrix.HPCGAP }}
runs-on: ubuntu-latest
# Don't run this twice on PRs for branches pushed to the same repository
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}
strategy:
fail-fast: false
matrix:
gap-branch:
- master
- stable-4.11
- stable-4.10
- stable-4.9
ABI:
- ''
HPCGAP:
- no
include:
- gap-branch: master
ABI: 32
HPCGAP: no
- gap-branch: master
ABI: ''
HPCGAP: yes

steps:
- uses: actions/checkout@v2
- uses: gap-actions/setup-gap@v2
with:
GAPBRANCH: ${{ matrix.gap-branch }}
ABI: ${{ matrix.ABI }}
HPCGAP: ${{ matrix.HPCGAP }}
- uses: gap-actions/build-pkg@v1
- uses: gap-actions/run-pkg-tests@v2
- uses: gap-actions/process-coverage@v2
- uses: codecov/codecov-action@v2
# test:
# name: ${{ matrix.gap-branch }} ${{ matrix.ABI }} - HPC ${{ matrix.HPCGAP }}
# runs-on: ubuntu-latest
# # Don't run this twice on PRs for branches pushed to the same repository
# if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}
# strategy:
# fail-fast: false
# matrix:
# gap-branch:
# - master
# - stable-4.11
# - stable-4.10
# - stable-4.9
# ABI:
# - ''
# HPCGAP:
# - no
# include:
# - gap-branch: master
# ABI: 32
# HPCGAP: no
# - gap-branch: master
# ABI: ''
# HPCGAP: yes
#
# steps:
# - uses: actions/checkout@v2
# - uses: gap-actions/setup-gap@v2
# with:
# GAPBRANCH: ${{ matrix.gap-branch }}
# ABI: ${{ matrix.ABI }}
# HPCGAP: ${{ matrix.HPCGAP }}
# - uses: gap-actions/build-pkg@v1
# - uses: gap-actions/run-pkg-tests@v2
# - uses: gap-actions/process-coverage@v2
# - uses: codecov/codecov-action@v2

test-cygwin:
name: "master cygwin64 - HPC no"
Expand All @@ -57,25 +57,29 @@ jobs:
with:
GAP_PKGS_TO_BUILD: ''
- uses: gap-actions/build-pkg@cygwin-v1

- name: Setup tmate session
uses: mxschmitt/action-tmate@v3

- uses: gap-actions/run-pkg-tests@cygwin-v2
with:
NO_COVERAGE: 'yes'

# The documentation job
manual:
name: Build manuals
runs-on: ubuntu-latest
# Don't run this twice on PRs for branches pushed to the same repository
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}

steps:
- uses: actions/checkout@v2
- uses: gap-actions/setup-gap@v2
- uses: gap-actions/build-pkg-docs@v1
with:
use-latex: 'true'
- name: 'Upload documentation'
uses: actions/upload-artifact@v2
with:
name: manual
path: ./doc/manual.pdf
# manual:
# name: Build manuals
# runs-on: ubuntu-latest
# # Don't run this twice on PRs for branches pushed to the same repository
# if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}
#
# steps:
# - uses: actions/checkout@v2
# - uses: gap-actions/setup-gap@v2
# - uses: gap-actions/build-pkg-docs@v1
# with:
# use-latex: 'true'
# - name: 'Upload documentation'
# uses: actions/upload-artifact@v2
# with:
# name: manual
# path: ./doc/manual.pdf

0 comments on commit c734243

Please sign in to comment.