Skip to content

add note that ipra workarounds are insufficient for stack arguments #292

add note that ipra workarounds are insufficient for stack arguments

add note that ipra workarounds are insufficient for stack arguments #292

Workflow file for this run

# This workflow installs dependencies for PDF generation, generates the PDF,
# and uploads the PDF as an artifact.
name: Build PDF
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
APT_PACKAGES_FILE: ${{ github.workspace }}/dependencies/apt_packages.txt
BUNDLE_GEMFILE: ${{ github.workspace }}/dependencies/Gemfile
BUNDLE_BIN: ${{ github.workspace }}/bin
NPM_PACKAGE_FOLDER: ${{ github.workspace }}/dependencies
PDF_RESULT: XTeic.pdf
steps:
- uses: actions/checkout@v3
- name: Install Ubuntu packages
run: |
sudo apt-get update
grep -vE '^#' ${APT_PACKAGES_FILE} | xargs sudo apt-get install --yes --no-install-recommends
# Ruby for asciidoctor
- name: Setup Ruby and Gemfile content
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler-cache: true
# Node.js for wavedrom
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install Node.js dependencies
run: npm install ${NPM_PACKAGE_FOLDER}
- name: Generate PDF
run: |
PATH=${PATH}:${BUNDLE_BIN}:$(npm bin) \
make ${PDF_RESULT}
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: XTeic.pdf
path: ${{ env.PDF_RESULT }}
retention-days: 7