Skip to content

Commit

Permalink
🔇 Set sh.command log level to warning
Browse files Browse the repository at this point in the history
sh INFO log level is too verbose by default, refs upstream TODO

TODO:
I was tracking a sh logger issue being too verbose.
It turns out that this is an old upstream issue that we see because we run the CI
using an old p4a Docker image (3 years old) from DockerHub

TODO:
explain the token was generated via https://app.docker.com/settings/personal-access-tokens
set under https://github.com/kivy/python-for-android/settings/secrets/actions
Explain it's currently under `andremiras` account, but can be changed any time.
Explain we made it a dedicated workflow to not add more complexity to the push one,
but that also mean we rebuild the image.
Explain that later we could add support for multi architecture.
- update the icon
  • Loading branch information
AndreMiras committed Aug 11, 2024
1 parent 27ead9a commit c2fe741
Show file tree
Hide file tree
Showing 6 changed files with 293 additions and 253 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Docker

on:
workflow_dispatch:
push:
branches:
- develop
# TODO
- feature/dockerhub_push
pull_request:

jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
# TODO
# - run: make docker/build
- run: make docker/login
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
- name: docker push
if: github.ref == 'develop'
run: make docker/push
Loading

0 comments on commit c2fe741

Please sign in to comment.