Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove CentOS from CI #686

Merged
merged 2 commits into from
Jul 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
use vaulted centos packages
  • Loading branch information
BebeSparkelSparkel committed Jul 1, 2024
commit f3224e591889347b5cd64d330bf24022cf8fdf49
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -192,6 +192,11 @@ jobs:
steps:
- name: install deps
run: |
# Fixing “No URLs in Mirrorlist” Error on CentOS 8 Stream
# https://bitsanddragons.wordpress.com/2024/06/04/fixing-no-urls-in-mirrorlist-error-on-centos-8-stream/
# https://archive.vn/dCjg1
sed -i -e 's/mirrorlist/#mirrorlist/g' -e 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*

yum install -y gcc gmp gmp-devel make ncurses ncurses-compat-libs xz perl
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_GHC_VERSION=9.2.8 sh
- uses: actions/checkout@v3 #This version must stay old enough to remain compatible with the container image
Loading