Building and pushing Eve kernel images #627
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: eve-kernel build | |
| on: | |
| workflow_dispatch: | |
| pull_request_review: | |
| types: [ submitted ] | |
| push: | |
| branches: | |
| - "eve-kernel-arm64-v6.1.155-generic" | |
| env: | |
| branch_name: "refs/heads/eve-kernel-arm64-v6.1.155-generic" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| packages: | |
| runs-on: self-hosted | |
| if: ${{ github.event.review.state == 'approved' }} || github.ref == env.branch_name | |
| steps: | |
| - name: Get eve-kernel | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - name: Login to Docker Hub | |
| if: ${{ github.event.repository.full_name }}== 'lf-edge/eve-kernel' | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_PULL_USER }} | |
| password: ${{ secrets.DOCKERHUB_PULL_TOKEN }} | |
| - name: Build eve-kernel-arm64 | |
| run: | | |
| make -f Makefile.eve BRANCH?=${GITHUB_REF##*/} kernel-gcc | |
| - name: Log in to Docker Hub | |
| if: ${{ github.ref == env.branch_name }} | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.RELEASE_DOCKERHUB_ACCOUNT }} | |
| password: ${{ secrets.RELEASE_DOCKERHUB_TOKEN }} | |
| - name: Push eve-kernel-arm64-v6.1.112-generic if PR approved or pushed | |
| if: ${{ github.ref == env.branch_name }} | |
| run: | | |
| make -f Makefile.eve BRANCH?=${GITHUB_REF##*/} push-gcc |