Skip to content

Merge branch 'main' of github.com:32bitmicro/LLVM-Embedded-Toolchain #19

Merge branch 'main' of github.com:32bitmicro/LLVM-Embedded-Toolchain

Merge branch 'main' of github.com:32bitmicro/LLVM-Embedded-Toolchain #19

Workflow file for this run

name: Build
on:
# push:
# branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch: ~
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install packages
run: |
sudo apt-get -y install cmake ninja-build meson
- name: configure
run: |
git config --global user.email "[email protected]"
git config --global user.name "Pawel Wodnicki"
- name: build
run: |
mkdir build
cd build
cmake .. -GNinja -DFETCHCONTENT_QUIET=OFF
ninja package-llvm-toolchain
- name: upload
uses: actions/upload-artifact@v4
with:
name: my-artifact
path: build/LLVM-ETOOL*.tar.xz
retention-days: 5