phase1,phase2: add feeds host override support #247
Workflow file for this run
This file contains hidden or 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: Build and push containers | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - 'v*' | |
| pull_request: | |
| workflow_dispatch: | |
| inputs: | |
| pr_number: | |
| description: 'PR number to build and push container for' | |
| required: true | |
| type: number | |
| env: | |
| GITHUB_SHA_LEN: 8 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| test-lint: | |
| name: Test with Python ${{ matrix.python-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: | |
| - "3.11" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: pip install -r requirements-dev.txt | |
| - name: Lint with ruff | |
| run: ruff phase*/master.cfg | |
| - name: Lint with flake8 | |
| run: flake8 phase*/master.cfg | |
| - name: Stylecheck with black | |
| run: black phase1/master.cfg | |
| build-test: | |
| name: Build and Test container | |
| runs-on: ubuntu-latest | |
| needs: test-lint | |
| permissions: | |
| packages: write | |
| strategy: | |
| fail-fast: ${{ github.event_name == 'pull_request' }} | |
| matrix: | |
| include: | |
| - container_flavor: master | |
| - container_flavor: worker | |
| container_test_command: "--env BUILDWORKER_TLS=1 --env BUILDWORKER_MASTER=Z:1922 --env BUILDWORKER_NAME=X --env BUILDWORKER_PASSWORD=Y" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Environment variables | |
| run: | | |
| echo "BUILDBOT_VERSION=$(cat .github/buildbot-version)" >> $GITHUB_ENV | |
| echo "GIT_SHA_SHORT=${GITHUB_SHA::${{ env.GITHUB_SHA_LEN }}}" >> $GITHUB_ENV | |
| - name: Build container and export it to local Docker | |
| uses: docker/build-push-action@v6 | |
| with: | |
| load: true | |
| tags: local/${{ matrix.container_flavor }} | |
| file: docker/build${{ matrix.container_flavor }}/Dockerfile | |
| build-args: | | |
| BUILDBOT_VERSION=${{ env.BUILDBOT_VERSION }} | |
| OPENWRT_VERSION=${{ env.GIT_SHA_SHORT }} | |
| - name: Test ${{ matrix.container_flavor }} Docker container | |
| run: | | |
| docker run --detach ${{ matrix.container_test_command }} --name test-${{ matrix.container_flavor }} local/${{ matrix.container_flavor }} | |
| sleep 5 | |
| pip install cram | |
| cram --verbose "tests/cram/${{ matrix.container_flavor }}" | |
| deploy: | |
| name: Push Container | |
| if: github.event_name != 'pull_request' | |
| runs-on: ubuntu-latest | |
| needs: build-test | |
| environment: production | |
| permissions: | |
| packages: write | |
| strategy: | |
| matrix: | |
| container_flavor: | |
| - master | |
| - worker | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.event_name == 'workflow_dispatch' && format('refs/pull/{0}/merge', inputs.pr_number) || '' }} | |
| - name: Environment variables | |
| run: | | |
| echo "BUILDBOT_VERSION=$(cat .github/buildbot-version)" >> $GITHUB_ENV | |
| echo "GIT_SHA_SHORT=${GITHUB_SHA::${{ env.GITHUB_SHA_LEN }}}" >> $GITHUB_ENV | |
| - name: Docker meta | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: ghcr.io/${{ github.repository }}/build${{ matrix.container_flavor }}-v${{ env.BUILDBOT_VERSION }} | |
| tags: | | |
| type=raw,value=pr-${{ inputs.pr_number }},enable=${{ github.event_name == 'workflow_dispatch' }} | |
| type=ref,event=branch | |
| type=sha,prefix=sha- | |
| type=semver,pattern={{version}} | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build container again and push it | |
| uses: docker/build-push-action@v6 | |
| with: | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| file: docker/build${{ matrix.container_flavor }}/Dockerfile | |
| build-args: | | |
| BUILDBOT_VERSION=${{ env.BUILDBOT_VERSION }} | |
| OPENWRT_VERSION=${{ env.GIT_SHA_SHORT }} |