-
Notifications
You must be signed in to change notification settings - Fork 3
114 lines (111 loc) · 4.04 KB
/
docker-ci.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: Docker Image CI
on:
push:
branches: [ 'docker-ci-test' ]
pull_request:
branches: [ 'docker-ci-test' ]
release:
types: [published]
env:
IMAGE: jirinovo/scdrake
TEST_TAG: test
jobs:
docker-build-test-push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get scdrake package version from DESCRIPTION
run: |
pkg_version=$(grep -P '^Version: \d+\.\d+\.\d+$' DESCRIPTION | cut -d' ' -f2)
echo "pkg_version=$pkg_version" >> $GITHUB_ENV
echo "scdrake package version: $pkg_version"
- name: Check that tag matches package version in DESCRIPTION
if: github.event_name == 'release'
run: |
echo "pkg_version: $pkg_version"
test -n "$pkg_version" || (echo "'Version:' not found in DESCRIPTION" && false)
test "v$pkg_version" == "${{ github.event.release.tag_name }}" \
|| (echo "'Version: $pkg_version' in DESCRIPTION does not match current git tag ('${{ github.event.release.tag_name }}')" && false)
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: false
swap-storage: true
- name: Build and export test image
uses: docker/build-push-action@v5
with:
context: .
build-args: |
"SCDRAKE_VERSION=${{ env.pkg_version }}"
load: true
tags: ${{ env.IMAGE }}:${{ env.TEST_TAG }}
cache-from: type=gha
cache-to: type=gha,mode=min
- name: Run test image
run: |
docker run -d \
--name scdrake_test \
-v $(pwd):/home/rstudio/scdrake_source \
-e USERID=$(id -u) \
-e GROUPID=$(id -g) \
${{ env.IMAGE }}:${{ env.TEST_TAG }}
- name: Test image
id: testImage
run: |
docker exec -w /home/rstudio/scdrake_source scdrake_test \
r --interactive -L /usr/local/lib/R/site-library -t dev/run_tests.R \
--no-test-pipeline \
--output-dir /home/rstudio/scdrake_test_summary
- name: Copy and compress test results
if: steps.testImage.outcome == 'failure'
run: |
docker cp scdrake_test:/home/rstudio/scdrake_test_summary /
tar czf /scdrake_test_summary.tar.gz /scdrake_test_summary
- name: Upload test results
if: steps.testImage.outcome == 'failure'
uses: actions/upload-artifact@v3
with:
name: scdrake_test_summary
path: /scdrake_test_summary.tar.gz
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE }}
tags: |
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'docker-ci-test') }}
type=semver,pattern={{version}}
- name: Build and push image to Docker Hub
uses: docker/build-push-action@v5
with:
context: .
build-args: |
"SCDRAKE_VERSION=${{ env.pkg_version }}"
# platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Rollback release
if: github.event_name == 'release' && failure()
uses: author/action-rollback@stable
with:
tag: ${{ github.event.release.tag_name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}