-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 854 Bytes
/
Copy pathmacOS.yml
File metadata and controls
36 lines (34 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: macOS_test
on: workflow_dispatch
jobs:
build-macos:
strategy:
matrix:
os: [macos-13, macos-15]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
#- name: Checkout source
# run: git clone https://github.com/cfyzium/bearlibterminal
- name: Look around
shell: bash
run: |
cmake --version || true
cmake -G || true
gcc --version || true
pwd
ls -lh
system_profiler SPDisplaysDataType
open ~/
screencapture screenshot.png
#mkdir build
#cd build
#cmake ../bearlibterminal
#ls -lh
#make
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-screenshot
path: ${{ github.workspace }}/screenshot.png