Port tests of pax headers from Megh's branch to upstream. #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: centos | |
on: | |
- push | |
- pull_request | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
centos: | |
runs-on: ubuntu-latest | |
container: | |
image: centos:7 | |
steps: | |
- name: install deps | |
run: | | |
yum install -y gcc gmp gmp-devel make ncurses ncurses-compat-libs ncurses-devel xz perl libstdc++-static | |
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_INSTALL_NO_STACK=1 BOOTSTRAP_HASKELL_GHC_VERSION=9.2.8 sh | |
- uses: actions/checkout@v3 | |
- name: Test | |
run: | | |
source ~/.ghcup/env | |
cabal update | |
cabal test --test-show-details=direct |