mem: Implement safe copy functions #82
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: It Compiles! | |
on: [push, workflow_dispatch] | |
jobs: | |
Compile: | |
runs-on: ubuntu-latest | |
#container: archlinux:latest | |
steps: | |
- name: Install dependencies | |
#run: > | |
# pacman -Sy --noconfirm --needed glibc clang nasm lld cmake ninja xorriso git | |
run: > | |
sudo apt-get install clang lld cmake ninja-build xorriso -y | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Configure source | |
run: > | |
cmake -B build -G Ninja | |
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ . | |
- name: Build | |
run: ninja -C build |