Release #436
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
schedule: | |
- cron: "0 0 * * *" # Every day at midnight | |
workflow_dispatch: | |
inputs: | |
bun-versions: | |
description: "Bun version, comma separated (e.g. 0.0.1,0.0.2,1.0.8-canary.20231104.1)" | |
required: false | |
default: "" | |
nodejs-version: | |
description: "Node.js version, comma separated (e.g. 14.7.4,17.3.8,18.4.5)" | |
required: false | |
default: "" | |
distros: | |
description: "Distro, comma separated (e.g. alpine,debian-slim,debian)" | |
required: false | |
default: "" | |
# TODO: To be implemented | |
# skip-check: | |
# description: "Skip version check" | |
# required: false | |
# default: "true" | |
env: | |
REGISTRY: imbios | |
PLATFORMS: linux/amd64,linux/arm64 | |
NODE_MAJOR_VERSIONS_TO_CHECK: 18,20,22,23 | |
NODE_VERSIONS_TO_BUILD: "" | |
BUN_TAGS_TO_CHECK: canary,latest | |
BUN_VERSIONS_TO_BUILD: "" | |
DISTROS: alpine,debian-slim,debian | |
jobs: | |
test-job: | |
uses: ./.github/workflows/ci.yml | |
check-and-build-job: | |
needs: test-job | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install jq | |
run: sudo apt install jq | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: "pipenv" | |
- name: Install pipenv | |
run: pip install pipenv | |
- name: Install dependencies using pipenv | |
run: | | |
pipenv install --dev | |
- name: Run tests with coverage | |
run: | | |
pipenv run pytest --cov --cov-report=lcov | |
# bashcov ./test-commit-changes.sh | |
# ./merge_lcov.sh src merged.lcov | |
- name: Check for new releases of nodejs and bun | |
if: ${{ inputs.nodejs-version == '' && inputs.bun-versions == '' && inputs.distros == '' }} | |
run: | | |
set -e | |
echo "NODE_VERSIONS_TO_BUILD=$(pipenv run python check_nodejs.py ${{ env.NODE_MAJOR_VERSIONS_TO_CHECK }})" >> $GITHUB_ENV | |
echo "BUN_VERSIONS_TO_BUILD=$(pipenv run python check_bun.py ${{ env.BUN_TAGS_TO_CHECK }})" >> $GITHUB_ENV | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- uses: nick-fields/retry@v3 | |
name: Build and push Docker images | |
with: | |
timeout_minutes: 60 | |
max_attempts: 3 | |
retry_on: error | |
command: ./build-updated.sh | |
env: | |
REGISTRY: ${{ env.REGISTRY }} | |
PLATFORMS: ${{ env.PLATFORMS }} | |
NODE_VERSIONS_TO_BUILD: ${{ env.NODE_VERSIONS_TO_BUILD || inputs.nodejs-version }} | |
BUN_VERSIONS_TO_BUILD: ${{ env.BUN_VERSIONS_TO_BUILD || inputs.bun-versions }} | |
DISTROS: ${{ env.DISTROS || inputs.distros }} | |
- name: Commit changes | |
run: ./commit-changes.sh | |
env: | |
BUN_VERSIONS_TO_BUILD: ${{ env.BUN_VERSIONS_TO_BUILD }} | |
NODE_VERSIONS_TO_BUILD: ${{ env.NODE_VERSIONS_TO_BUILD }} | |
DISTROS: ${{ env.DISTROS }} | |
- name: Pull changes | |
run: git pull -r | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} |