Test named volume.
Some checks failed
Build / Build (pull_request) Failing after 10s
Build / Test (pull_request) Failing after 4s

This commit is contained in:
2026-02-21 16:53:03 -05:00
parent 2d5e721a79
commit fdb4f0db0b

View File

@@ -11,7 +11,10 @@ on:
jobs: jobs:
Build: Build:
name: Build name: Build
runs-on: ubuntu-latest container:
image: ubuntu:24.04
volumes:
- build-artifacts:/workspace/artifacts
env: env:
QT_VERSION: 6.7.3 QT_VERSION: 6.7.3
PATH: $HOME/.cargo/bin:$PATH PATH: $HOME/.cargo/bin:$PATH
@@ -48,6 +51,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:
name: Test
container:
image: ubuntu:24.04
volumes:
- build-artifacts:/workspace/artifacts
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"