Skip to content

Migrate from Drone CI to GitHub Action #1

Migrate from Drone CI to GitHub Action

Migrate from Drone CI to GitHub Action #1

name: CI on Pull Request
on:
pull_request:
env:
IMAGE: rancher/system-agent-installer-rke2
jobs:
test-build-linux:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
os: [ linux ]
arch: [ amd64, arm64 ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Fix the not-a-git-repository issue
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Set environment variables
run: |
. scripts/version
echo "VERSION=$VERSION" >> "$GITHUB_ENV"
echo "URI_VERSION=$URI_VERSION" >> "$GITHUB_ENV"
echo "ARCH=${{ matrix.arch }}" >> "$GITHUB_ENV"
echo "OS=${{ matrix.os }}" >> "$GITHUB_ENV"
- name: Download installer
run: scripts/download
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
id: build
uses: docker/build-push-action@v5
with:
context: .
file: package/Dockerfile
push: false
load: true
tags: "${{ env.IMAGE }}:${{ env.VERSION }}-${{ env.OS }}-${{ env.ARCH }}"
platforms: "${{ matrix.os }}/${{ matrix.arch }}"
- name: Inspect image
run: docker inspect "${{ env.IMAGE }}:${{ env.VERSION }}-${{ env.OS }}-${{ env.ARCH }}"
test_build-windows:
strategy:
matrix:
include:
- SERVERCORE_VERSION: 1809
TAG_SUFFIX: windows-1809-amd64
RUNNER: windows-2019
- SERVERCORE_VERSION: ltsc2022
TAG_SUFFIX: windows-ltsc2022-amd64
RUNNER: windows-2022
runs-on: ${{ matrix.RUNNER }}
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Fix the not-a-git-repository issue
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Set environment variables
run: |
scripts/windows/version.ps1
"VERSION=$env:VERSION" | Out-File -FilePath $env:GITHUB_ENV -Append
"URI_VERSION=$env:URI_VERSION" | Out-File -FilePath $env:GITHUB_ENV -Append
"ARCH=amd64" | Out-File -FilePath $env:GITHUB_ENV -Append
- name: Download installer
run: scripts/windows/download.ps1
- name: Build Docker image
run: |
docker image build `
-f package/Dockerfile.windows `
--build-arg SERVERCORE_VERSION=${{ matrix.SERVERCORE_VERSION }} `
-t ${{ env.IMAGE }}:${{ env.VERSION }}-${{ matrix.TAG_SUFFIX }} .
- name: Inspect image
run: docker inspect ${{ env.IMAGE }}:${{ env.VERSION }}-${{ matrix.TAG_SUFFIX }}