-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (53 loc) · 1.67 KB
/
Copy pathbuild.yml
File metadata and controls
68 lines (53 loc) · 1.67 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Set up C++ compiler for Ubuntu
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install g++ -y
- name: Set up C++ compiler for macOS
if: matrix.os == 'macos-latest'
run: brew install gcc
- name: Set up C++ compiler for Windows
if: matrix.os == 'windows-latest'
run: choco install mingw -y
- name: Create build directory on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: mkdir -p build/cppx/bin
- name: Create build directory on macOS
if: matrix.os == 'macos-latest'
run: mkdir -p build/cppx/bin
- name: Create build directory on Windows
if: matrix.os == 'windows-latest'
run: mkdir build\\cppx\\bin
- name: Build on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: g++ build.cpp -o build/cppx/bin/build --std=c++20
- name: Build on macOS
if: matrix.os == 'macos-latest'
run: g++ build.cpp -o build/cppx/bin/build --std=c++20
- name: Build on Windows
if: matrix.os == 'windows-latest'
run: g++ build.cpp -o build\\cppx\\bin\\build.exe --std=c++20
- name: Run on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: ./build/cppx/bin/build
- name: Run on macOS
if: matrix.os == 'macos-latest'
run: ./build/cppx/bin/build
- name: Run on Windows
if: matrix.os == 'windows-latest'
run: ./build/cppx/bin/build.exe