Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v2.8][backport] Migrate from Drone to Github Actions, remove Dapper and add Darwin/arm64 support #366

Merged
merged 4 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
299 changes: 0 additions & 299 deletions .drone.yml

This file was deleted.

39 changes: 35 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,58 @@
name: CI

on:
workflow_dispatch:
push:
pull_request:

jobs:

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Checkout Repo
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version-file: go.mod

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice!

cache: false

- name: Lint
uses: golangci/golangci-lint-action@v4

- name: Validate Go modules
run: ./scripts/validate

- name: Test
run: go test -v ./...
run: ./scripts/test

- name: Get Tag
if: startsWith(github.ref, 'refs/tags/v')
run: echo "GITHUB_TAG=$GITHUB_REF_NAME" >> $GITHUB_ENV

- name: Build
run: make build
env:
CROSS: 1
run: ./scripts/build

- name: Package
run: |
./scripts/package
ls -lR dist/artifacts
# Stage binary for packaging step
cp -r ./bin/* ./package/

# Export the tag for the next step
source ./scripts/version
echo "VERSION=$VERSION"
echo "VERSION=$VERSION" >> $GITHUB_ENV

- name: Docker Build
uses: docker/build-push-action@v5
with:
push: false
context: package
tags: rancher/cli2:${{ env.VERSION }}
31 changes: 31 additions & 0 deletions .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: FOSSA

on:
workflow_dispatch:
push:
tags:
- v*
branches:
- v*

jobs:
fossa:
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write # needed for the Vault authentication

steps:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Load Secrets from Vault
uses: rancher-eio/read-vault-secrets@main
with:
secrets: |
secret/data/github/repo/${{ github.repository }}/fossa/credentials token | FOSSA
- name: Check FOSSA compliance
uses: fossas/fossa-action@main
with:
api-key: ${{ env.FOSSA }}
Loading
Loading