Differences From Artifact [df13bcdacc]:
- File
.github/workflows/ubuntu-18.04-32bit.yml
— part of check-in
[4aa544351d]
at
2022-01-26 18:19:09
on branch trunk
— GitHub Actions: Disable TLS for 32 bit Ubuntu
For some reason, gnutls-dev:i386 just doesn't exist on GitHub Actions,
while it does in a local Ubuntu VM. (user: js, size: 1226) [annotate] [blame] [check-ins using]
To Artifact [96c9a8ae41]:
- File .github/workflows/ubuntu-18.04-32bit.yml — part of check-in [9fd333e53b] at 2022-03-10 19:53:30 on branch trunk — GitHub Actions: Run apt-get update before install (user: js, size: 1268) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
17 18 19 20 21 22 23 |
- --without-tls --disable-sockets --disable-files
- --without-tls --disable-files
- --without-tls --disable-shared
- --without-tls --disable-shared --enable-seluid24
- --without-tls --disable-compiler-tls --disable-threads
steps:
- name: Install dependencies
| > > | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
- --without-tls --disable-sockets --disable-files
- --without-tls --disable-files
- --without-tls --disable-shared
- --without-tls --disable-shared --enable-seluid24
- --without-tls --disable-compiler-tls --disable-threads
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install gcc-multilib
- uses: actions/checkout@v2
- name: autogen.sh
run: ./autogen.sh
- name: configure
run: ./configure OBJC="clang -m32" ${{ matrix.configure_flags }}
- name: make
run: make -j$(nproc)
- name: make check
run: make check
- name: make install
run: sudo make install
|