-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (49 loc) · 1.47 KB
/
judger.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Publish staging build for judger
on:
push:
branches:
- "staging"
paths:
- "judger/**"
- .github/workflows/judger.yml
env:
REGISTRY: ghcr.io
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Checkout submodule
run: git submodule update --init --recursive
- name: Set up nsjail cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
judger/nsjail-docker/output/x86_64-linux-musl
key: ${{ runner.os }}-nsjail-${{ hashFiles('judger/nsjail-docker/Dockerfile.**') }}
restore-keys: ${{ runner.os }}-nsjail-
- name: Install Just
uses: taiki-e/install-action@just
- name: Install docker
uses: docker-practice/actions-setup-docker@master
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build nsjail
run: cd judger && just build-nsjail
- name: build judger
uses: docker/build-push-action@v5
with:
build-args: ARCH=x86_64
context: .
file: "./judger/Dockerfile"
push: true
tags: "ghcr.io/mdcpp/mdoj/judger:staging"
labels: "judger"
cache-from: type=gha
cache-to: type=gha,mode=max