Do not close processors during save, but instead close during restore. #17095
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: CI | |
| "on": | |
| push: | |
| branches: | |
| - "*" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: bazel | |
| run: | | |
| export DEBIAN_FRONTEND=noninteractive | |
| sudo -E apt update && sudo -E apt install -y make | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: build | |
| run: | | |
| mkdir -p bin | |
| make copy TARGETS=runsc DESTINATION=bin/ | |
| - name: Upload runsc | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: runsc | |
| path: bin/runsc |