Skip to content

Commit 0adfb66

Browse files
committed
Validate encoding against binutils
1 parent 4eff085 commit 0adfb66

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Encoding validation
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
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+
run: |
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

Comments
 (0)