Skip to content

Commit

Permalink
CERNBox cleanup (#4212)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmgigi96 authored Oct 9, 2023
1 parent ae00345 commit 6161ac3
Show file tree
Hide file tree
Showing 227 changed files with 5,100 additions and 25,869 deletions.
4 changes: 0 additions & 4 deletions .drone.env

This file was deleted.

242 changes: 0 additions & 242 deletions .drone.star

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3.1.0
- name: Setup Go environment
uses: actions/setup-go@v3.3.0
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false
- name: Check changelog
run: make check-changelog
env:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ on:
required: true
type: string
image:
required: true
type: string
download:
type: boolean
submodules:
type: boolean
parts:
Expand All @@ -25,10 +26,11 @@ jobs:
submodules: ${{ inputs.submodules }}
- name: Download image
uses: ishworkh/docker-image-artifact-download@v1
if: inputs.download
with:
image: ${{ inputs.image }}
- name: Test
run: make ${{ inputs.test }} -o docker-revad
run: make ${{ inputs.test }}
env:
REVAD_IMAGE: ${{ inputs.image }}
PARTS: ${{ inputs.parts }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
type: boolean
platforms:
type: string
context:
type: string
default: .
outputs:
image:
value: ${{ jobs.docker.outputs.image }}
Expand Down Expand Up @@ -40,7 +43,7 @@ jobs:
uses: docker/build-push-action@v3
id: build
with:
context: .
context: ${{ inputs.context }}
file: ${{ inputs.file }}
tags: ${{ inputs.tags }}
load: ${{ inputs.load }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3.1.0
- name: Setup Go environment
uses: actions/setup-go@v3.3.0
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false
- name: Run linters
run: make lint
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ jobs:
uses: actions/checkout@v3
- name: Setup Go environment
id: go
uses: actions/setup-go@v3.3.0
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false
- name: Make distribution
run: make dist
env:
Expand Down
Loading

0 comments on commit 6161ac3

Please sign in to comment.