Update build.yml file
Some checks failed
Build and Publish / Build and Test (push) Failing after 8m7s

This commit is contained in:
Joshua Coles 2024-09-08 14:35:28 +01:00
parent 29fe8bee39
commit 4b2f0f3bf7

View File

@ -1,13 +1,12 @@
name: Rust CI name: Build and Publish
on: on:
push: push:
branches: [ main ] branches: [ main ]
pull_request:
branches: [ main ]
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
RUST_BINARY_NAME: monzo-ingestion
jobs: jobs:
build: build:
@ -27,12 +26,12 @@ jobs:
components: rustfmt, clippy components: rustfmt, clippy
- name: Add ARM64 target - name: Add ARM64 target
run: rustup target add aarch64-unknown-linux-gnu run: rustup target add aarch64-unknown-linux-musl
- name: Install ARM64 toolchain - name: Install ARM64 toolchain
run: | run: |
apt-get update apt-get update
apt-get install -y gcc-aarch64-linux-gnu apt-get install -y gcc-aarch64-linux-gnu build-essential musl-tools
- name: Cache dependencies - name: Cache dependencies
uses: actions/cache@v3 uses: actions/cache@v3
@ -54,9 +53,9 @@ jobs:
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: build command: build
args: --release --all-features --target aarch64-unknown-linux-gnu args: --release --all-features --target aarch64-unknown-linux-musl
env: env:
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER: aarch64-linux-gnu-gcc
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v2 uses: docker/setup-qemu-action@v2
@ -71,19 +70,17 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
# - name: Run tests
# uses: actions-rs/cargo@v1
# with:
# command: test
# args: --all-features
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: binaries name: binaries
path: | path: |
target/release/${{ github.event.repository.name }} target/release/${{ env.RUST_BINARY_NAME }}
target/aarch64-unknown-linux-gnu/release/${{ github.event.repository.name }} target/aarch64-unknown-linux-musl/release/${{ env.RUST_BINARY_NAME }}
# The target directory is kept in the .dockerignore file, so allow these to be copied in we need to move them to a
# new directory.
- run: mv target docker-binaries
- name: Build and push multi-arch Docker image - name: Build and push multi-arch Docker image
uses: docker/build-push-action@v4 uses: docker/build-push-action@v4
@ -92,9 +89,9 @@ jobs:
file: ./Dockerfile file: ./Dockerfile
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
push: true push: true
tags: git.joshuacoles.me/${{ github.repository }}:latest,git.joshuacoles.me/${{ github.repository }}:${{ github.sha }} tags: git.joshuacoles.me/${{ github.repository }}:${{ github.sha }},git.joshuacoles.me/${{ github.repository }}:latest
build-args: | build-args: |
BINARY_NAME=monzo-ingestion BINARY_NAME=${{ env.RUST_BINARY_NAME }}
- uses: robiningelbrecht/ntfy-action@v1.0.0 - uses: robiningelbrecht/ntfy-action@v1.0.0
name: Notify via ntfy.sh name: Notify via ntfy.sh