Skip to content

Commit

Permalink
Clean up and fix some issues with the image and documentation generat…
Browse files Browse the repository at this point in the history
…ion.
  • Loading branch information
aperloff committed Sep 18, 2024
1 parent a9ec932 commit 3af4d35
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ COPY SSAPy/ /opt/SSAPy/
# Install C/C++ compilers
RUN echo "sslverify=False" >> /etc/dnf/dnf.conf && \
dnf -y update && \
dnf groupinstall -y "Development Tools" && \
dnf groupinstall --exclude=selinux-policy --exclude=selinux-policy-targeted -y "Development Tools" && \
dnf -y clean all && \
sed -i '$ d' /etc/dnf/dnf.conf && \
gcc --version
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,7 @@ jobs:
id: docker_meta
with:
images: |
ghcr.io/${{ github.repository_owner }}/centos-s8
${{ github.repository_owner }}/centos-s8
ghcr.io/${{ github.repository_owner }}/ssapy-centos-s9
tags: |
type=schedule,pattern=nightly
type=schedule,pattern=develop
Expand All @@ -140,13 +139,14 @@ jobs:
type=semver,pattern={{major}}
type=ref,event=branch
type=ref,event=pr
type=ref,event=tag
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build & Deploy centos-s8
- name: Build & Deploy Images
uses: docker/build-push-action@v5
with:
context: .
Expand Down
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def linkcode_resolve(domain, info):
"python": ("https://docs.python.org/3", None),
"numpy": ("http://docs.scipy.org/doc/numpy", None),
}
tls_verify = False
master_doc = "index"

# -- Options for HTML output -------------------------------------------------
Expand Down

0 comments on commit 3af4d35

Please sign in to comment.