We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2268d0c + b336390 commit ab0097cCopy full SHA for ab0097c
.github/workflows/build.yml
@@ -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
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