fix(process): serialize non-leader exec handoff #1162
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Dunitest x86_64 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: ["master", "feat-*", "fix-*"] | |
| pull_request: | |
| branches: ["master", "feat-*", "fix-*"] | |
| env: | |
| ARCH: x86_64 | |
| HOME: /root | |
| RUSTUP_DIST_SERVER: "https://rsproxy.cn" | |
| RUSTUP_UPDATE_ROOT: "https://rsproxy.cn/rustup" | |
| jobs: | |
| dunitest: | |
| name: Dunitest | |
| runs-on: ubuntu-latest | |
| # Allow the 30-minute guest test budget plus build, cleanup, and diagnostics. | |
| timeout-minutes: 50 | |
| container: | |
| image: dragonos/dragonos-dev:v1.23 | |
| options: --privileged -v /dev:/dev | |
| steps: | |
| - name: Checkout DragonOS code | |
| uses: actions/checkout@v4 | |
| - name: Change source | |
| run: | | |
| find . -type f \( -name "*.toml" -o -name "Makefile" \) -exec sed -i 's/git\.mirrors\.dragonos\.org\.cn/github\.com/g' {} + | |
| - name: Build DragonOS | |
| shell: bash -ileo pipefail {0} | |
| run: | | |
| make clean | |
| make -j$(nproc) all | |
| - name: Run dunitest | |
| shell: bash -ileo pipefail {0} | |
| env: | |
| DISK_SAVE_MODE: "1" | |
| run: | | |
| make test-dunit | |
| - name: Preserve dunitest serial log | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: dunitest-serial-x86_64-${{ github.run_id }}-${{ github.run_attempt }} | |
| path: serial_opt.txt | |
| if-no-files-found: error |