James Brumond c506c84987
All checks were successful
Build container images / build (push) Successful in 6m40s
more cleanup
2023-11-02 23:49:30 -07:00
2023-11-02 23:49:30 -07:00
2023-11-02 23:49:30 -07:00
2023-11-02 23:26:00 -07:00

Container image with Node20 and Rust, primarily for CI Rust build steps


name: Build

on:
  push:
    branches:
    - master
  pull_request:
    branches:
    - master

jobs:
  build:
    runs-on: ubuntu-latest
    container:
      image: gitea.jbrumond.me/images/rust-ci:latest
    strategy:
      matrix:
        rust-target:
        - x86_64-pc-windows-gnu
        - armv7-unknown-linux-gnueabihf
        - aarch64-unknown-linux-gnu
    steps:
      - name: Check out the repo
        uses: actions/checkout@v3

      - name: Build
        run: cargo build --target ${{ matrix.rust-target }}
Description
No description provided
Readme 47 KiB
Languages
Dockerfile 100%