mirror of
https://github.com/PaiGramTeam/telegram-bot-api-build.git
synced 2024-11-22 15:35:16 +00:00
Separate slow ARM builds
This commit is contained in:
parent
1c03eaefa0
commit
9ea301844f
52
.github/workflows/docker-image.yml
vendored
52
.github/workflows/docker-image.yml
vendored
@ -11,9 +11,11 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- &checkout
|
||||||
|
name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Checkout upstream repo
|
- &checkout-upstream
|
||||||
|
name: Checkout upstream repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: tdlib/telegram-bot-api
|
repository: tdlib/telegram-bot-api
|
||||||
@ -24,23 +26,20 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
path: /tmp/.buildx-cache
|
path: /tmp/.buildx-cache
|
||||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||||
restore-keys: |
|
- &setup-qemu
|
||||||
${{ runner.os }}-buildx-
|
name: Set up QEMU
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v1
|
uses: docker/setup-qemu-action@v1
|
||||||
- name: Set up Docker Buildx
|
- &setup-buildx
|
||||||
|
name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v1
|
||||||
- name: Login to DockerHub
|
- &login-dockerhub
|
||||||
|
name: Login to DockerHub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v1
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_LOGIN }}
|
username: ${{ secrets.DOCKERHUB_LOGIN }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
# - name: Get current time
|
- &set-version
|
||||||
# uses: 1466587594/get-current-time@v2
|
name: Set version
|
||||||
# id: current-time
|
|
||||||
# with:
|
|
||||||
# format: YYYYMMDD
|
|
||||||
- name: Set version
|
|
||||||
id: current-version
|
id: current-version
|
||||||
run: |
|
run: |
|
||||||
TG_SERVER_VERSION=$(cat telegram-bot-api/CMakeLists.txt | grep TelegramBotApi | cut -d " " -f3)
|
TG_SERVER_VERSION=$(cat telegram-bot-api/CMakeLists.txt | grep TelegramBotApi | cut -d " " -f3)
|
||||||
@ -48,14 +47,35 @@ jobs:
|
|||||||
echo "Parsed version: ${TG_SERVER_VERSION}"
|
echo "Parsed version: ${TG_SERVER_VERSION}"
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with: &build-and-push-with
|
||||||
context: .
|
context: .
|
||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
platforms: linux/386,linux/amd64,linux/arm/v7,linux/arm64
|
platforms: linux/386,linux/amd64
|
||||||
push: true
|
push: true
|
||||||
cache-from: type=local,src=/tmp/.buildx-cache
|
cache-from: type=local,src=/tmp/.buildx-cache
|
||||||
cache-to: type=local,dest=/tmp/.buildx-cache
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
||||||
tags: |
|
tags: |
|
||||||
aiogram/telegram-bot-api:latest
|
aiogram/telegram-bot-api:latest
|
||||||
aiogram/telegram-bot-api:${{ env.TG_SERVER_VERSION }}
|
aiogram/telegram-bot-api:${{ env.TG_SERVER_VERSION }}
|
||||||
# aiogram/telegram-bot-api:${{ steps.current-time.outputs.formattedTime }}
|
|
||||||
|
build-arm:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- *checkout
|
||||||
|
- *checkout-upstream
|
||||||
|
- name: Cache Docker layers
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: /tmp/.buildx-cache
|
||||||
|
key: ${{ runner.os }}-buildx-arm-${{ github.sha }}
|
||||||
|
- *setup-qemu
|
||||||
|
- *setup-buildx
|
||||||
|
- *login-dockerhub
|
||||||
|
- *set-version
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
<<: *build-and-push-with
|
||||||
|
platforms: linux/arm/v7,linux/arm64
|
||||||
|
tags: |
|
||||||
|
aiogram/telegram-bot-api:arm-${{ env.TG_SERVER_VERSION }}
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 4c3478f3a375f132141bee7ab79f4d1034d0fdcf
|
Subproject commit 5c2193c4dcf9ca6e2de91ada8d4fdb722cb38791
|
Loading…
Reference in New Issue
Block a user