forked from EEESlab/tricore-gcc-toolchain-11.3.0
-
Notifications
You must be signed in to change notification settings - Fork 0
131 lines (111 loc) · 3.2 KB
/
build.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-gcc:
name: GCC toolchain build
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: |
sudo ./scripts/install-apt-dependencies
- name: Build Linux
run: |
mkdir build-linux
cd build-linux
export CFLAGS="-O2"
export CXXFLAGS="-O2"
export LDFLAGS="-static -s"
../configure --prefix /opt/gcc/linux
make -j$(nproc) stamps/build-gcc-stage2
- name: Build Win32
run: |
cd build-linux/build-newlib
make install prefix=/opt/gcc/win32
cd ../..
mkdir build-win32
cd build-win32
export CFLAGS="-O2"
export CXXFLAGS="-O2"
export LDFLAGS="-static -s"
../configure --prefix /opt/gcc/win32 --with-host=x86_64-w64-mingw32
make -j$(nproc) stamps/build-binutils-tc
export PATH="/opt/gcc/linux/bin:$PATH"
make -j$(nproc) stamps/build-gcc-stage2-only
- name: Package
run: |
cd /opt/gcc/linux
rm -rf deps
zip -r9 ../gcc-linux.zip .
cd /opt/gcc/win32
rm -rf deps
zip -r9 ../gcc-win32.zip .
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: tricore-gcc-artifacts
path: /opt/gcc/*.zip
build-qemu-linux:
name: QEMU linux build
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: |
sudo ./scripts/install-apt-dependencies
- name: Build Linux
run: |
mkdir build-linux
cd build-linux
../configure --prefix /opt/gcc/linux
make -j$(nproc) stamps/build-qemu
- name: Package
run: |
cd /opt/gcc/linux
zip -r9 ../qemu-linux.zip bin/qemu-system-tricore share
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: tricore-qemu-linux-artifacts
path: /opt/gcc/*.zip
build-qemu-win32:
name: QEMU win32 build
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: |
sudo ./scripts/install-apt-dependencies
- name: Build Win32
run: |
mkdir build-win32
cd build-win32
../configure --prefix /opt/gcc/win32 --with-host=x86_64-w64-mingw32
make -j$(nproc) stamps/build-qemu
- name: Package
run: |
cd /opt/gcc/win32
zip -r9 ../qemu-win32.zip bin/qemu-system-tricore.exe share
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: tricore-qemu-win32-artifacts
path: /opt/gcc/*.zip