Skip to content

ci: change to use GitHub actions #16

ci: change to use GitHub actions

ci: change to use GitHub actions #16

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
build-amd64:
name: Build AMD64 binaries
# runs-on: longhorn-infra-amd64-runners
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
# - name: Install make & curl
# run: |
# sudo apt update
# sudo apt-get -y install make curl
# - name: List module
# run: |
# lsmod
# Build binaries
- name: Run ci
run: make ci
- uses: codecov/codecov-action@v4
with:
files: ./coverage.out
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}
build-arm64:
name: Build ARM64 binaries
runs-on: longhorn-infra-arm64-runners
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install make & curl
run: |
sudo apt update
sudo apt-get -y install make curl
# Build binaries
- name: Run ci
run: make ci
- uses: codecov/codecov-action@v4
with:
files: ./coverage.out
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}