54b7a01fe5e7b7ccc8ad300f888e1790f9132df5
[openwrt/openwrt.git] / .github / workflows / tools.yml
1 name: Build host tools
2
3 on:
4 pull_request:
5 paths:
6 - 'tools/**'
7 - '.github/workflows/tools.yml'
8 push:
9 paths:
10 - 'tools/**'
11 - '.github/workflows/tools.yml'
12
13 permissions:
14 contents: read
15
16 jobs:
17 build-macos-latest:
18 if: github.event_name != 'push'
19 runs-on: macos-latest
20
21 steps:
22 - name: Checkout
23 uses: actions/checkout@v2
24 with:
25 path: openwrt
26
27 - name: Setup MacOS
28 run: |
29 echo "WORKPATH=/Volumes/OpenWrt" >> "$GITHUB_ENV"
30 hdiutil create -size 20g -type SPARSE -fs "Case-sensitive HFS+" -volname OpenWrt OpenWrt.sparseimage
31 hdiutil attach OpenWrt.sparseimage
32 mv "$GITHUB_WORKSPACE/openwrt" /Volumes/OpenWrt/
33
34 - name: Install required prereq on MacOS
35 working-directory: ${{ env.WORKPATH }}/openwrt
36 run: |
37 brew install \
38 autoconf \
39 automake \
40 coreutils \
41 diffutils \
42 findutils \
43 gawk \
44 gettext \
45 git-extras \
46 gmp \
47 gnu-getopt \
48 gnu-sed \
49 gnu-tar \
50 grep \
51 libidn2 \
52 libunistring \
53 m4 \
54 make \
55 mpfr \
56 ncurses \
57 openssl@1.1 \
58 pcre \
59 pkg-config \
60 quilt \
61 readline \
62 wget \
63 zstd
64
65 echo "/bin" >> "$GITHUB_PATH"
66 echo "/sbin/Library/Apple/usr/bin" >> "$GITHUB_PATH"
67 echo "/usr/bin" >> "$GITHUB_PATH"
68 echo "/usr/local/bin" >> "$GITHUB_PATH"
69 echo "/usr/local/opt/coreutils/bin" >> "$GITHUB_PATH"
70 echo "/usr/local/opt/findutils/libexec/gnubin" >> "$GITHUB_PATH"
71 echo "/usr/local/opt/gettext/bin" >> "$GITHUB_PATH"
72 echo "/usr/local/opt/gnu-getopt/bin" >> "$GITHUB_PATH"
73 echo "/usr/local/opt/make/libexec/gnubin" >> "$GITHUB_PATH"
74 echo "/usr/local/opt/make/libexec/gnubin" >> "$GITHUB_PATH"
75 echo "/usr/sbin" >> "$GITHUB_PATH"
76
77 - name: Make prereq
78 working-directory: ${{ env.WORKPATH }}/openwrt
79 run: make defconfig
80
81 - name: Build tools MacOS
82 working-directory: ${{ env.WORKPATH }}/openwrt
83 run: make tools/install -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
84
85 - name: Upload logs
86 if: always()
87 uses: actions/upload-artifact@v2
88 with:
89 name: macos-latest-logs
90 path: ${{ env.WORKPATH }}/openwrt/logs
91
92 - name: Upload config
93 if: always()
94 uses: actions/upload-artifact@v2
95 with:
96 name: macos-latest-config
97 path: ${{ env.WORKPATH }}/openwrt/.config
98
99 build-linux-buildbot:
100 runs-on: ubuntu-latest
101 container: registry.gitlab.com/openwrt/buildbot/buildworker-3.4.1
102
103 steps:
104 - name: Checkout
105 uses: actions/checkout@v2
106 with:
107 path: 'openwrt'
108
109 - name: Fix permission
110 run: |
111 chown -R buildbot:buildbot openwrt
112
113 - name: Set AUTOREMOVE config for tools container
114 if: github.event_name == 'push'
115 shell: su buildbot -c "sh -e {0}"
116 working-directory: openwrt
117 run: |
118 touch .config
119 echo CONFIG_DEVEL=y >> .config
120 echo CONFIG_AUTOREMOVE=y >> .config
121
122 - name: Make prereq
123 shell: su buildbot -c "sh -e {0}"
124 working-directory: openwrt
125 run: make defconfig
126
127 - name: Build tools BuildBot Container
128 shell: su buildbot -c "sh -e {0}"
129 working-directory: openwrt
130 run: make tools/install -j$(nproc) BUILD_LOG=1 || ret=$? .github/workflows/scripts/show_build_failures.sh
131
132 - name: Upload logs
133 if: always()
134 uses: actions/upload-artifact@v2
135 with:
136 name: linux-buildbot-logs
137 path: openwrt/logs
138
139 - name: Upload config
140 if: always()
141 uses: actions/upload-artifact@v2
142 with:
143 name: linux-buildbot-config
144 path: openwrt/.config
145
146 - name: Archive prebuilt tools
147 if: github.event_name == 'push'
148 shell: su buildbot -c "sh -e {0}"
149 working-directory: openwrt
150 run: tar --mtime=now -cf tools.tar staging_dir/host build_dir/host dl
151
152 - name: Upload prebuilt tools
153 if: github.event_name == 'push'
154 uses: actions/upload-artifact@v2
155 with:
156 name: linux-buildbot-prebuilt-tools
157 path: openwrt/tools.tar
158 retention-days: 1
159
160 push-tools-container:
161 needs: build-linux-buildbot
162 runs-on: ubuntu-latest
163 if: github.event_name == 'push'
164
165 permissions:
166 contents: read
167 packages: write
168
169 steps:
170 - name: Checkout
171 uses: actions/checkout@v2
172 with:
173 path: 'openwrt'
174
175 - name: Download prebuilt tools from build job
176 uses: actions/download-artifact@v2
177 with:
178 name: linux-buildbot-prebuilt-tools
179 path: openwrt
180
181 - name: Login to GitHub Container Registry
182 uses: docker/login-action@v2
183 with:
184 registry: ghcr.io
185 username: ${{ github.actor }}
186 password: ${{ secrets.GITHUB_TOKEN }}
187
188 - name: Build and push
189 uses: docker/build-push-action@v3
190 with:
191 context: openwrt
192 push: true
193 tags: ghcr.io/${{ github.repository_owner }}/tools:latest
194 file: openwrt/.github/workflows/Dockerfile.tools