Add articafts? #23
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-macos | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-macos: | |
runs-on: macOS-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
#- name: install-libs | |
# run: sudo apt-get install liblldb-9-dev libgl1-mesa-dev libglu1-mesa-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev | |
- name: configure | |
run: export CC=clang && export CXX=clang++ && mkdir ${GITHUB_WORKSPACE}/build && cd ${GITHUB_WORKSPACE}/build && cmake .. | |
- name: build | |
run: cmake --build ${GITHUB_WORKSPACE}/build -v | |
- name: list build dirs | |
run: ls ${GITHUB_WORKSPACE}/build | |
- name: list bin dirs | |
run: ls ${GITHUB_WORKSPACE}/bin | |
- name: upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: macOS-ARM | |
path: ${GITHUB_WORKSPACE}/bin/lldbgui |