-
Notifications
You must be signed in to change notification settings - Fork 9
83 lines (74 loc) · 2.15 KB
/
build.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Build and Deploy
on:
push:
branches:
- master
tags:
- "v*.*.*"
workflow_call:
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test ENState 🧪
uses: ./.github/workflows/test.yml
secrets: inherit
build:
name: Build ENState 🚀
# runs-on: arc-runner-set
runs-on: ubuntu-latest
needs: [test]
env:
SCCACHE_GHA_ENABLED: "on"
RUSTC_WRAPPER: "sccache"
steps:
- uses: actions/checkout@v3
- name: Configure sccache
uses: actions/github-script@v6
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
with:
version: "v0.7.4"
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: enstate-server
path: server/target/release/enstate
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/v3xlabs/enstate
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=edge
type=sha
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# with:
# driver: kubernetes
# driver-opts: namespace=buildkit
- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
with:
push: true
file: .github/.docker/Dockerfile
context: server
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=ghcr.io/v3xlabs/enstate:edge
cache-to: type=inline