Skip to content

Commit ab0097c

Browse files
committed
Merge pull request #11716 from avagin:build-runsc
PiperOrigin-RevId: 757956963
2 parents 2268d0c + b336390 commit ab0097c

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/build.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: CI
2+
3+
"on":
4+
push:
5+
branches:
6+
- "*"
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: bazel
18+
run: |
19+
export DEBIAN_FRONTEND=noninteractive
20+
sudo -E apt update && sudo -E apt install -y make
21+
22+
- name: Checkout
23+
uses: actions/checkout@v4
24+
25+
- name: build
26+
run: |
27+
mkdir -p bin
28+
make copy TARGETS=runsc DESTINATION=bin/
29+
30+
- name: Upload runsc
31+
uses: actions/upload-artifact@v4
32+
with:
33+
name: runsc
34+
path: bin/runsc

0 commit comments

Comments
 (0)