-
Notifications
You must be signed in to change notification settings - Fork 2
105 lines (90 loc) · 2.8 KB
/
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
name: RIT Action Continuous Integration Test
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
packages: write
env:
TEST_TAG: ${{ github.event.repository.name }}/rit-action:test
LATEST_TAG: ghcr.io/rsksmart/${{ github.event.repository.name }}/rit-action
jobs:
build-push-rit-action-image:
name: Test RIT Action docker image
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.LATEST_TAG }}
${{ env.TEST_TAG }}
- name: Setup Docker BuildX
id: setup-buildx
uses: docker/setup-buildx-action@v3
with:
install: true
driver-opts: network=host
platforms: linux/amd64
- name: Build and export locally Docker
uses: docker/build-push-action@v6
with:
context: .github/images
load: true
tags: ${{ env.TEST_TAG }}
# - name: Test the RIT Container Action
# id: test-container
# env:
# RSKJ_BRANCH: 'master'
# FEDERATOR_BRANCH: 'master'
# run: |
# docker run \
# --env RSKJ_BRANCH="${{ env.RSKJ_BRANCH }}" \
# --env FEDERATOR_BRANCH="${{ env.FEDERATOR_BRANCH }}" \
# --rm ${{ env.TEST_TAG }}
- name: Build the RIT Action Container Image
uses: docker/build-push-action@v6
with:
context: .github/images
tags: ${{ env.LATEST_TAG }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64
- name: GitHub container registry login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push Images
run: |
docker push ${{ env.LATEST_TAG }}
test-rit-action:
needs: build-push-rit-action-image
name: GitHub Actions Test
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: GitHub container registry login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Test RIT Action
id: test-rit-action
uses: docker://ghcr.io/rsksmart/rootstock-integration-tests/rit-action:latest
with:
rskj-branch: master
federator-branch: master
- name: Print RIT Status and Message
id: output
run: |
echo "RIT Status = ${{ steps.test-action.outputs.status }}"
echo "RIT Message = ${{ steps.test-action.outputs.message }}"