-
Notifications
You must be signed in to change notification settings - Fork 0
114 lines (109 loc) · 3.38 KB
/
ci-earthly.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: CI
on:
push:
branches:
- main
tags:
- v*
pull_request:
defaults:
run:
shell: bash
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Setup Earthly
uses: earthly/actions/setup-earthly@v1
with:
version: v0.8.8
- name: Checkout code
uses: actions/checkout@v4
# Needed for Earthly tagging to work
- name: Put back the git branch into git
run: |
branch=""
if [ -n "$GITHUB_HEAD_REF" ]; then
branch="$GITHUB_HEAD_REF"
else
branch="${GITHUB_REF##*/}"
fi
git checkout -b "$branch" || true
- name: Run +lint target
env:
EARTHLY_TOKEN: ${{ secrets.EARTHLY_TOKEN }}
EARTHLY_ORG: ${{ secrets.EARTHLY_ORG }}
run: |
git diff e72df147cd
#earthly --verbose --ci --sat disco --push +lint
- name: Upload golangci-lint report
uses: actions/upload-artifact@v4
with:
name: golangci-lint-${{ github.run_id }}_${{ github.run_attempt }}
retention-days: 30
path: golangci-lint-*.txt
# test:
# runs-on: ubuntu-22.04
# steps:
# - name: Setup Earthly
# uses: earthly/actions/setup-earthly@v1
# with:
# version: v0.8.8
# - name: Checkout code
# uses: actions/checkout@v4
# # Needed for Earthly tagging to work
# - name: Put back the git branch into git
# run: |
# branch=""
# if [ -n "$GITHUB_HEAD_REF" ]; then
# branch="$GITHUB_HEAD_REF"
# else
# branch="${GITHUB_REF##*/}"
# fi
# git checkout -b "$branch" || true
# - name: Run +lint target
# env:
# EARTHLY_TOKEN: ${{ secrets.EARTHLY_TOKEN }}
# EARTHLY_ORG: ${{ secrets.EARTHLY_ORG }}
# run: earthly --ci --sat disco --push +test
# publish:
# if: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref_name == 'main' }}
# needs: [lint, test]
# runs-on: ubuntu-22.04
# steps:
# - name: Setup Earthly
# uses: earthly/actions/setup-earthly@v1
# with:
# version: v0.8.8
# # QEMU is needed for building multiplatform OCI images
# - name: Setup QEMU
# id: qemu
# uses: docker/setup-qemu-action@v1
# with:
# image: tonistiigi/binfmt:latest
# platforms: all
# - name: Checkout code
# uses: actions/checkout@v4
# # Needed for Earthly tagging to work
# - name: Put back the git branch into git
# run: |
# branch=""
# if [ -n "$GITHUB_HEAD_REF" ]; then
# branch="$GITHUB_HEAD_REF"
# else
# branch="${GITHUB_REF##*/}"
# fi
# git checkout -b "$branch" || true
# - name: Docker Login
# run: docker login --username "${{ secrets.DOCKERHUB_USERNAME }}" --password "${{ secrets.DOCKERHUB_TOKEN }}"
# - name: Run +publish target
# env:
# EARTHLY_TOKEN: ${{ secrets.EARTHLY_TOKEN }}
# EARTHLY_ORG: ${{ secrets.EARTHLY_ORG }}
# run: earthly --ci --push --secret GH_TOKEN="${{ github.token }}" --sat disco +publish
# - name: Upload artifacts
# uses: actions/upload-artifact@v4
# with:
# name: binaries
# path: dist/
# retention-days: 7