Skip to content

Update version of Ubuntu for workflow #176

Update version of Ubuntu for workflow

Update version of Ubuntu for workflow #176

Workflow file for this run

name: Yaws-CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
make-check:
name: Check on OTP versions 23 and newer
strategy:
fail-fast: false
runs-on: ubuntu-22.04
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: >22

Check failure on line 22 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
version-type: loose
- name: Setup Build
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update
sudo apt-get -y install autotools-dev build-essential make libpam0g-dev openssl wget curl cadaver #texlive-font-utils
- name: Build Yaws
run: |
autoreconf -vfi
./configure
make all -j4
- name: Deterministically Build Yaws
run: |
autoreconf -vfi
./configure --enable-deterministic-build --with-source-date-epoch=$EPOCHSECONDS
make all -j4
make all -j4
- name: Run test suite
run: |
make check
- name: Compile with rebar
run: |
rebar compile
# Currently not working steps
# - name: Try document generation
# run: |
# make docs
# - name: Run dialyzer
# run: |
# make dialyzer