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
6 changes: 3 additions & 3 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:

jobs:
setup-linux:
runs-on: ubuntu
runs-on: [self-hosted, Linux, esteco]
name: Setup - Linux
steps:
- name: Checkout build environment information
Expand All @@ -33,7 +33,7 @@ jobs:
run: |
rm -rf bitpit
tests-linux:
runs-on: ubuntu
runs-on: [self-hosted, Linux, esteco]
needs: setup-linux
name: Linux (${{ matrix.compiler }}) - MPI ${{ matrix.mpi }} - Debug ${{ matrix.debug }}
strategy:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
--target bitpit-test \
-f environments/ubuntu/Dockerfile .
tests-windows:
runs-on: Windows
runs-on: [self-hosted, Windows]
name: Windows (MSVC) - MPI ${{ matrix.mpi }} - Debug ${{ matrix.debug }}
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion environments/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04 AS bitpit-ubuntu-base
FROM ubuntu:focal-20250404 AS bitpit-ubuntu-base
LABEL stage=bitpit-ubuntu-base
ENV DEBIAN_FRONTEND noninteractive
RUN sed -i "s/htt[p|ps]:\/\/archive.ubuntu.com\/ubuntu\//mirror:\/\/mirrors.ubuntu.com\/mirrors.txt/g" /etc/apt/sources.list && \
Expand Down