Improve apt installation. #14
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: Build Ubuntu | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+_beta' | |
- '[0-9]+.[0-9]+.[0-9]+_candidate' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- id: CHECKOUT_SOURCE | |
uses: actions/checkout@v3 | |
- id: INSTALL_ADDITIONAL_BUILD_DEPENDENCIES | |
run: | | |
sudo apt-get install -y eatmydata | |
sudo eatmydata apt-get update -y | |
sudo eatmydata sudo apt-get install -y eatmydata libtidy-dev libxml2-dev libxslt1-dev unzip jq texlive-xetex | |
- id: CONFIGURE | |
run: eatmydata ./configure | |
- id: MAKE | |
run: eatmydata make | |
- id: TEST | |
run: eatmydata make test |