forked from jaegertracing/jaeger
-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (38 loc) · 1 KB
/
ci-crossdock.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
name: CIT Crossdock
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
crossdock:
runs-on: ubuntu-latest
strategy:
matrix:
steps:
- name: crossdock
cmd: bash scripts/build-crossdock.sh
name: ${{ matrix.steps.name }}
steps:
- uses: actions/[email protected]
with:
submodules: true
- name: Fetch git tags
run: |
git fetch --prune --unshallow --tags
- uses: actions/setup-go@v2
with:
go-version: ^1.17
- name: Export BRANCH variable
uses: ./.github/actions/setup-branch
- name: Install tools
run: make install-ci
- uses: docker/setup-qemu-action@v1
- name: Build, test, and publish ${{ matrix.steps.name }} image
run: ${{ matrix.steps.cmd }}
env:
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
QUAY_TOKEN: ${{ secrets.QUAY_TOKEN }}
- name: Output crossdock logs
run: make crossdock-logs
if: ${{ failure() }}