Test with ubuntu:latest.
Some checks failed
Build / Build (pull_request) Failing after 6s
Build / Test (pull_request) Failing after 3s

ubuntu:24.04 was not defined in the runner's docker-compose.yaml server side.
This commit is contained in:
2026-02-21 17:21:40 -05:00
parent fc2a44740f
commit 384fa51b6e

View File

@@ -10,8 +10,11 @@ on:
jobs: jobs:
Build: Build:
runs-on: ubuntu-latest
name: Build name: Build
container:
image: ubuntu:latest
volumes:
- build-artifacts:/workspace/artifacts
env: env:
QT_VERSION: 6.7.3 QT_VERSION: 6.7.3
QMAKE: ${{ env.CI_WORKSPACE }}/${{ env.QT_VERSION }}/gcc_64/bin/qmake QMAKE: ${{ env.CI_WORKSPACE }}/${{ env.QT_VERSION }}/gcc_64/bin/qmake
@@ -46,10 +49,19 @@ jobs:
. "$HOME/.cargo/env" . "$HOME/.cargo/env"
cargo b --release cargo b --release
- name: Copy build artifacts
run: cp -r target/ /workspace/artifacts/
Test: Test:
name: Test name: Test
runs-on: ubuntu-latest container:
image: ubuntu:latest
volumes:
- build-artifacts:/workspace/artifacts
steps: steps:
- name: Copy build artifacts
run: cp -r /workspace/artifacts/target/ .
- name: Test libclide - name: Test libclide
run: | run: |
. "$HOME/.cargo/env" . "$HOME/.cargo/env"