Skip to content

ubuntu18 x86-64

ubuntu18 x86-64 #58

name: ubuntu18.04 v9.0.0 build x86-64
run-name: ubuntu18 x86-64
# make GHA actions use node16 which still works with bionic
# See https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
# Unclear how long this will work though
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
push:
branches:
- v9.0.0
pull_request:
branches:
- v9.0.0
jobs:
build-amd-ubuntu18:
runs-on: ubuntu-latest
container:
image: docker://ubuntu:18.04
options: --volume ${{ github.workspace }}:/workspace/${{ github.repository }}
steps:
- name: Setup environment
# Ubuntu 18.04 has a GLib version too old for nodejs20 or later,
# so, in order to do the tests, we must allow to use an older version.
# https://github.com/actions/checkout/issues/1590
# In that thread, Flamefire proposed this same solution:
# https://github.com/boostorg/nowide/commit/d4aa719f21149de8960247403435e9b794a01255
run: |
echo "GHA_USE_NODE_20=false" >> $GITHUB_ENV
echo "ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true" >> $GITHUB_ENV
- name: Check out repository code
uses: actions/checkout@v4
- name: Install
env:
DEBIAN_FRONTEND: noninteractive
run: |
apt update
apt install -y lsb-release git wget pkg-config g++ cmake uuid-dev libncurses5-dev python3-dev
cd /workspace/${{ github.repository }} && python3 install.py
- name: Build
run: |
echo "-----------------------"
uname -a
lsb_release -a
echo "-----------------------"
bash -c "cd /workspace/${{ github.repository }} && source install/setup.bash && mkdir -p build && cd build && cmake .. && make -j$(nproc)"