Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 2 additions & 0 deletions .devcontainer/portability-archlinux/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
FROM archlinux
RUN pacman -Syu --noconfirm bash git python
23 changes: 23 additions & 0 deletions .devcontainer/portability-archlinux/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// See https://aka.ms/devcontainer.json for format details.
{
"name": "archlinux",
//"image": "archlinux",
"dockerFile": "Dockerfile",
"onCreateCommand": ".devcontainer/onCreate-meson.sh || true",
"features": {
// Git feature is not compatible with Arch Linux, so we install it manually in the Dockerfile
// https://github.com/devcontainers/features/issues/824
//"ghcr.io/devcontainers/features/git": {},
//"ghcr.io/devcontainers/features/python:1": {},
"../uv": {
"version": "latest"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
]
}
}
}
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- fedora:41
- fedora:42
- ghcr.io/void-linux/void-glibc-full
- archlinux
#- ubuntu:22.04 - fails due to issue with cypari2
#- ubuntu:24.04 - fails due to issue with cypari2
- ubuntu:25.04
Expand All @@ -38,6 +39,11 @@ jobs:
# node-based actions require libstdc++.so.6
xbps-install -Sy libstdc++ bash git
fi
if [ "${{ matrix.container }}" = "archlinux" ]; then
# The archlinux container is configured to not install docs by default
# but we need the maxima help to be in place
sed -i '/^NoExtract/d' /etc/pacman.conf
fi

- name: Checkout code
# cannot use v4 yet because of https://github.com/actions/checkout/issues/1487
Expand All @@ -51,7 +57,11 @@ jobs:
- name: Set up Python
run: |
uv python install
uv venv
if [ "${{ matrix.container }}" = "ghcr.io/void-linux/void-glibc-full" ] || [ "${{ matrix.container }}" = "archlinux" ]; then
uv venv --system-site-packages
else
uv venv
fi
. .venv/bin/activate
echo PATH=$PATH >> $GITHUB_ENV

Expand Down
1 change: 1 addition & 0 deletions build/pkgs/ecm/distros/arch.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gmp-ecm
1 change: 1 addition & 0 deletions build/pkgs/mpfi/distros/arch.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mpfi
2 changes: 2 additions & 0 deletions src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ mtx = cc.find_library(
)
png = dependency(['libpng', 'png', 'png16'], version: '>=1.2')
zlib = dependency('zlib', version: '>=1.2.11')
# We actually want >= 20231212, but the version number is not updated in the pkgconfig
# https://github.com/conda-forge/eclib-feedstock/issues/48
ec = dependency(
'eclib',
version: '>=20250122',
Expand Down
Loading