Merge pull request #2 from lefessan/z-2024-01-13-simple-github-workflow #1
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: Ubuntu Workflow | |
on: | |
pull_request: | |
branches: [ master-with-README ] | |
push: | |
# manual run in actions tab - for all branches | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build, test and provide nightly | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
include: | |
- os: ubuntu-latest | |
skip_test: true | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install automake libtool libdb5.3-dev libxml2-dev libcjson-dev bison flex help2man gettext texlive | |
- name: Set git user | |
run: | | |
git config --global user.name github-actions | |
git config --global user.email [email protected] | |
- name: bootstrap | |
run: | | |
make pdf | |
- name: Upload some pdfs | |
uses: actions/[email protected] | |
with: | |
name: gnucobol-docs PDF distribution | |
path: guide/PDFs/*.pdf | |
if-no-files-found: error | |
retention-days: 0 |