Skip to content

Commit

Permalink
trying to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mandresm committed Dec 5, 2024
1 parent 45fcd44 commit 582ff9a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
12 changes: 12 additions & 0 deletions .github/dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM ubuntu:25.04

WORKDIR /esm/

# Install build-time dependencies.
RUN apt-get update && \
apt-get install --yes --no-install-suggests --no-install-recommends \
git \
locales \
libsqlite3-dev \
ca-certificates \

10 changes: 6 additions & 4 deletions .github/workflows/esm_tests_computer_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,12 @@ jobs:
apt-get install -y git;
apt-get install -y locales;
apt-get install -y libsqlite3-dev;
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install miniforge
run: |
wget "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
bash Miniforge3-$(uname)-$(uname -m).sh;
mamba create -n esm_tools python=${{ matrix.python-version }};
conda activate esm_toolls
- name: Set locale
run: |
locale-gen en_US.UTF-8;
Expand Down

0 comments on commit 582ff9a

Please sign in to comment.