Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move head build to daily #660

Merged
merged 1 commit into from Apr 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/daily.yml
Expand Up @@ -34,3 +34,24 @@ jobs:
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}
continue-on-error: true

test_head_images:
container: deividrodriguez/byebug:head-${{ matrix.line_editor }}-${{ matrix.compiler }}

needs: build_head_images

runs-on: ubuntu-18.04

strategy:
matrix:
line_editor: [libedit, readline]
compiler: [clang, gcc]

steps:
- name: Run CI checks
run: |
bin/setup.sh
bin/rake

timeout-minutes: 15
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
version: [2.4.9, 2.5.7, 2.6.5, 2.7.0, head]
version: [2.4.9, 2.5.7, 2.6.5, 2.7.0]
line_editor: [libedit, readline]
compiler: [clang, gcc]

Expand Down