add nginx app #34
This file contains 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: Build CI | |
on: [push, pull_request] | |
env: | |
rust-toolchain: nightly-2023-09-01 | |
jobs: | |
clippy: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ env.rust-toolchain }} | |
components: rust-src, clippy, rustfmt | |
- name: Clippy for the default target | |
run: make clippy | |
- name: Clippy for x86_64 | |
run: make clippy ARCH=x86_64 | |
- name: Clippy for riscv64 | |
run: make clippy ARCH=riscv64 | |
- name: Clippy for aarch64 | |
run: make clippy ARCH=aarch64 | |
- name: Check code format | |
run: cargo fmt --all -- --check | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
arch: [x86_64, riscv64, aarch64] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ env.rust-toolchain }} | |
components: rust-src | |
- uses: actions-rs/[email protected] | |
with: | |
crate: cargo-binutils | |
version: latest | |
use-tool-cache: true | |
- name: Build display/basic_painting | |
run: make ARCH=${{ matrix.arch }} A=apps/display/basic_painting | |
- name: Build display/draw_map | |
run: make ARCH=${{ matrix.arch }} A=apps/display/draw_map | |
- name: Build fs/shell | |
run: make ARCH=${{ matrix.arch }} A=apps/fs/shell | |
- uses: ./.github/workflows/actions/setup-musl | |
with: | |
arch: ${{ matrix.arch }} | |
- name: Build c/helloworld | |
run: make ARCH=${{ matrix.arch }} A=apps/c/helloworld | |
- name: Build c/memtest | |
run: make ARCH=${{ matrix.arch }} A=apps/c/memtest | |
- name: Build c/sqlite3 | |
run: make ARCH=${{ matrix.arch }} A=apps/c/sqlite3 | |
- name: Build c/httpclient | |
run: make ARCH=${{ matrix.arch }} A=apps/c/httpclient | |
- name: Build c/httpserver | |
run: make ARCH=${{ matrix.arch }} A=apps/c/httpserver | |
- name: Build c/udpserver | |
run: make ARCH=${{ matrix.arch }} A=apps/c/udpserver | |
- name: Build c/iperf | |
run: make ARCH=${{ matrix.arch }} A=apps/c/iperf | |
- name: Build c/redis | |
run: make ARCH=${{ matrix.arch }} A=apps/c/redis SMP=4 | |
build-apps-for-std: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
arch: [x86_64] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ env.rust-toolchain }} | |
- name: Build fs/shell | |
run: cargo build -p arceos-shell |