-
Notifications
You must be signed in to change notification settings - Fork 9
47 lines (37 loc) · 1.2 KB
/
build-ubuntu-setup.yml
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
name: "Build Unix Executable"
on:
workflow_dispatch:
env:
BUILD_TYPE: Release
jobs:
buildUnix:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- run: mkdir ${{github.workspace}}/build
- name: Install other dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake ninja-build libgtk-3-dev
- name: Install GCC 11.4
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update
sudo apt-get install gcc-11 g++-11 -y
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 60 --slave /usr/bin/g++ g++ /usr/bin/g++-11
gcc --version
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build wxUiEditor
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target wxUiEditor
- name: Build Setup
run: |
cd build
cpack -G DEB -C Release
- name: Create wxUiEditor Artifact
uses: actions/upload-artifact@v4
with:
name: DebianSetup
path: |
build/wxUiEditor-*-Linux.deb