Skip to content

Commit

Permalink
Try build
Browse files Browse the repository at this point in the history
  • Loading branch information
deivid-rodriguez committed Aug 1, 2024
1 parent 46e602b commit 1617130
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,27 @@ on:
- master

jobs:
build:
steps:
- uses: actions/checkout@v2

- name: Install Docker client
run: |
apk add curl
curl -L -o /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-19.03.5.tgz
tar -xz --strip-components 1 -C /usr/bin -f /tmp/docker.tgz
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.3
bundler-cache: true

- name: Build and push docker image
run: bin/rake docker:build_all
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}

test:
container: deividrodriguez/byebug:${{ matrix.version }}-${{ matrix.line_editor }}-${{ matrix.compiler }}

Expand Down

0 comments on commit 1617130

Please sign in to comment.