Add Dwmac 5.10a Ethernet Driver #1035
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
# Copyright 2024, UNSW | |
# | |
# SPDX-License-Identifier: BSD-2-Clause | |
# Build and test example code | |
name: Examples | |
on: | |
pull_request: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build_linux_x86_64: | |
name: Linux x86-64 | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Download Microkit SDK | |
run: | | |
wget https://github.com/seL4/microkit/releases/download/1.4.1/microkit-sdk-1.4.1-linux-x86-64.tar.gz | |
tar xf microkit-sdk-1.4.1-linux-x86-64.tar.gz | |
- name: Install dependencies (via apt) | |
run: sudo apt update && sudo apt install -y make llvm lld xxd | |
- name: Download and install AArch64 GCC toolchain | |
run: | | |
wget -O aarch64-toolchain.tar.gz https://trustworthy.systems/Downloads/microkit/arm-gnu-toolchain-11.3.rel1-x86_64-aarch64-none-elf.tar.xz%3Frev%3D73ff9780c12348b1b6772a1f54ab4bb3 | |
tar xf aarch64-toolchain.tar.gz | |
echo "$(pwd)/arm-gnu-toolchain-11.3.rel1-x86_64-aarch64-none-elf/bin" >> $GITHUB_PATH | |
- name: Install Zig | |
uses: mlugg/setup-zig@v1.2.0 | |
with: | |
version: 0.13.0 | |
- name: Build and run examples | |
run: ./ci/examples.sh ${PWD}/microkit-sdk-1.4.1 | |
shell: bash | |
build_macos_x86_64: | |
name: macOS x86-64 | |
runs-on: macos-12 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Download Microkit SDK | |
run: | | |
wget https://github.com/seL4/microkit/releases/download/1.4.1/microkit-sdk-1.4.1-macos-x86-64.tar.gz | |
tar xf microkit-sdk-1.4.1-macos-x86-64.tar.gz | |
- name: Install dependencies (via Homebrew) | |
run: | | |
brew install llvm make | |
echo "/usr/local/opt/llvm/bin:$PATH" >> $GITHUB_PATH | |
- name: Install Zig | |
uses: mlugg/setup-zig@v1.2.0 | |
with: | |
version: 0.13.0 | |
- name: Download and install AArch64 GCC toolchain | |
run: | | |
wget -O aarch64-toolchain.tar.gz https://trustworthy.systems/Downloads/microkit/arm-gnu-toolchain-11.3.rel1-darwin-x86_64-aarch64-none-elf.tar.xz%3Frev%3D51c39c753f8c4a54875b7c5dccfb84ef | |
tar xf aarch64-toolchain.tar.gz | |
echo "$(pwd)/arm-gnu-toolchain-11.3.rel1-darwin-x86_64-aarch64-none-elf/bin" >> $GITHUB_PATH | |
- name: Build and run examples | |
run: ./ci/examples.sh ${PWD}/microkit-sdk-1.4.1 | |
shell: bash |