Skip to content

Commit

Permalink
Use alpine instead of Debian image for testing
Browse files Browse the repository at this point in the history
Alpine images are slimer
  • Loading branch information
xuhdev committed Dec 12, 2024
1 parent 851f9ac commit 74f2aa0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,20 @@ jobs:
test:
name: Runtime
runs-on: ubuntu-latest
container: python:3.13-bookworm
container: python:3.13-alpine3.21

steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install CMake
run: apk add cmake
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Display CMake version
run: cmake --version

- name: Install CMake
run: apt-get update && apt-get install -y cmake
- name: Install Dependencies
run: pip install -e .

- name: Test
run: cmake . && ctest -VV .

0 comments on commit 74f2aa0

Please sign in to comment.