-
Notifications
You must be signed in to change notification settings - Fork 59
74 lines (61 loc) · 2.03 KB
/
ci-cpp-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
name: C++ Build (Сборка проекта)
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
# Set up Docker Buildx
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# Cache Docker layers
- name: Cache Docker layers
id: cache-docker-layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-docker-${{ github.sha }}
restore-keys: |
${{ runner.os }}-docker-
# Build Docker image
- name: Build Docker image
run: |
docker buildx build --cache-from=type=local,src=/tmp/.buildx-cache --cache-to=type=local,dest=/tmp/.buildx-cache,mode=max -t my-cpp-image -f docker/image/Dockerfile .
# Run Docker container
- name: Run Docker Compose
run: |
docker compose up --abort-on-container-exit --exit-code-from bmstu
# Save Docker layer cache
- name: Save Docker layer cache
if: always()
uses: actions/upload-artifact@v3
with:
name: docker-layer-cache
path: /tmp/.buildx-cache
run_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download Docker layer cache
id: download-docker-layer-cache
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-docker-${{ github.sha }}
restore-keys: |
${{ runner.os }}-docker-
- name: Load Docker image from cache
run: |
docker buildx build --load --cache-from=type=local,src=/tmp/.buildx-cache -t my-cpp-image -f docker/image/Dockerfile .
- name: Run custom script "run.sh"
run: |
docker run --rm -v $(pwd):/workspace -w /workspace my-cpp-image bash /cpp_bmstu/docker/run_tasks/run.sh