Differences From Artifact [4509107d9f]:
- File
.github/workflows/ubuntu-latest-gcc.yml
— part of check-in
[a62fba3dc8]
at
2022-10-18 17:59:23
on branch trunk
— GitHub Actions: Replace Ubuntu 18.04 with latest
Ubuntu 18.04 is being deprecated. (user: js, size: 1170) [annotate] [blame] [check-ins using] [more...]
To Artifact [b7ca4731c5]:
- File .github/workflows/ubuntu-latest-gcc.yml — part of check-in [bdc755c141] at 2023-10-08 19:14:02 on branch trunk — GitHub Actions: Upgrade to actions/checkout@v4 (user: js, size: 1170) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
22 23 24 25 26 27 28 |
- --with-tls=gnutls
- --with-tls=gnutls --disable-shared
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install gobjc libssl-dev gnutls-dev
| | | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
- --with-tls=gnutls
- --with-tls=gnutls --disable-shared
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install gobjc libssl-dev gnutls-dev
- uses: actions/checkout@v4
- name: autogen.sh
run: ./autogen.sh
- name: configure
run: ./configure OBJC="gcc" ${{ matrix.configure_flags }}
- name: make
run: make -j$(nproc)
- name: make check
run: make check
- name: make install
run: sudo make install
|