Update the list of allowed syntax configurations and conditionals. #219
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: CI autotools | |
on: | |
push: | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build-and-test: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
# When set to true, GitHub cancels | |
# all in-progress jobs if any matrix job fails. | |
fail-fast: false | |
matrix: | |
include: | |
- name: linux-gcc-intree | |
os: ubuntu-latest | |
- name: linux-gcc-ootree | |
os: ubuntu-latest | |
# macOS | |
- name: macos-clang-intree | |
os: macos-latest | |
- name: macos-clang-ootree | |
os: macos-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup apt cache (Linux) | |
if: startsWith(runner.os, 'Linux') | |
uses: actions/cache@v3 | |
with: | |
path: /var/cache/apt | |
key: ${{ runner.os }}-apt-cache-${{ matrix.os }}-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-apt-cache-${{ matrix.os }}- | |
${{ runner.os }}-apt-cache- | |
- name: Setup Common Prerequisites | |
run: | | |
case ${{ runner.os }} in | |
Linux*) | |
sudo apt update | |
sudo apt install autoconf automake libtool bison | |
;; | |
macOS*) | |
sudo xcode-select -switch /Applications/Xcode.app | |
echo "SDKROOT=$(xcodebuild -version -sdk macosx Path)" >> $GITHUB_ENV | |
echo "$(xcodebuild -version -sdk macosx Path)" >> $GITHUB_PATH | |
brew install autoconf automake libtool bison coreutils | |
# bison is not activated by default to avoid clobbering | |
# already present outdated system bison. Let's prepend | |
# brew's path. | |
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH | |
;; | |
esac | |
- name: Setup Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.x | |
architecture: x64 | |
- name: Install Python Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install docutils pygments | |
- name: Generate ./configure | |
run: ./autogen.sh | |
- name: Fast Configure | |
run: | | |
./configure \ | |
--disable-golang \ | |
--disable-rust \ | |
--prefix=$PWD/install | |
- name: Fast Build | |
run: make -j$(nproc) | |
- name: Fast Install | |
run: make -j$(nproc) install | |
- name: Fast Clean | |
run: make -j$(nproc) distclean | |
- name: Minimal Install Test | |
working-directory: ./install/bin | |
run: ./re2c --version | |
- name: Get build dir | |
id: build-info | |
run: | | |
if echo "${{ matrix.name }}" | grep -q "ootree"; then | |
BUILD_DIR="$(pwd)/.build/${{ matrix.name }}-full" | |
mkdir -p "$BUILD_DIR" | |
else | |
BUILD_DIR="$(pwd)" | |
fi | |
echo "BUILD_DIR=$BUILD_DIR" >> $GITHUB_OUTPUT | |
- name: Full Configure | |
working-directory: ${{ steps.build-info.outputs.BUILD_DIR }} | |
run: | | |
$GITHUB_WORKSPACE/configure \ | |
--prefix=$PWD/full-install \ | |
--enable-libs \ | |
--enable-parsers \ | |
--enable-lexers \ | |
--enable-docs \ | |
--enable-debug \ | |
RE2C_FOR_BUILD=$GITHUB_WORKSPACE/install/bin/re2c | |
- name: Full Build | |
working-directory: ${{ steps.build-info.outputs.BUILD_DIR }} | |
run: | | |
find $GITHUB_WORKSPACE/src -name '*.re' | xargs touch | |
make -j$(nproc) | |
- name: Run Main Test Suite | |
working-directory: ${{ steps.build-info.outputs.BUILD_DIR }} | |
run: bash -c "ulimit -s 256; make check -j$(nproc)" | |
- name: Run Skeleton Tests | |
working-directory: ${{ steps.build-info.outputs.BUILD_DIR }} | |
run: python run_tests.py --skeleton | |
- name: Full Install | |
working-directory: ${{ steps.build-info.outputs.BUILD_DIR }} | |
run: make -j$(nproc) install | |
- name: Archive test artifacts | |
# Run this step only if tests failed (otherwise there is nothing to upload). | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
# To ensure that jobs don't overwrite existing artifacts, | |
# use a different name per job. | |
name: test-${{ matrix.name }} | |
# Tests run in a temporary directory that has a name test_<timestamp>. | |
path: ${{ steps.build-info.outputs.BUILD_DIR }}/test_[0-9]* | |
# Artifacts are retained for 90 days by default. | |
# In fact, we don't need such long period. | |
retention-days: 30 |