We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eff085 commit 0adfb66Copy full SHA for 0adfb66
.github/workflows/encoding-validation.yaml
@@ -0,0 +1,23 @@
1
+name: Encoding validation
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Download binutils 2.41
16
+ working-directory: /tmp
17
+ run: |
18
+ wget --no-verbose -c https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.gz -O - | tar -xz
19
+ - name: Build binutils 2.41
20
+ working-directory: /tmp/binutils-2.41
21
22
+ ./configure --prefix=/tmp/binutils --enable-gold=no --enable-ld=no --enable-gprofng=no --disable-libquadmath --disable-libstdcxx
23
+ make -j$(nproc)
0 commit comments