From 16171307fc97a0aee4b328e093bcf5b10c2925b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Thu, 1 Aug 2024 21:20:49 +0200 Subject: [PATCH] Try build --- .github/workflows/ubuntu.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 14aaa054..c1e20b1a 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -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 }}