ubuntu18 x86-64 #77
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} | |
env: {ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true} # Allow using Node16 actions | |
steps: | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
# - name: Run on old node | |
# run: | | |
# echo "Run on old node" | |
# echo "Run on old node" | |
# echo "Run on old node" | |
# apt update && apt -y install wget | |
# touch "$HOME/.bashrc" | |
# wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash | |
# export NVM_DIR="$HOME/.nvm" | |
# [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" | |
# nvm install v16.20.2 | |
# nvm use v16.20.2 | |
# export PATH="$NVM_DIR/versions/node/v16.20.2/bin:$PATH" | |
# node -v | |
# npm -v | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
# - 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)" |