Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

Commit

Permalink
Merge branch 'modernize-build-system'
Browse files Browse the repository at this point in the history
  • Loading branch information
pojntfx committed Oct 26, 2021
2 parents d528b9a + 9970394 commit 16fa4eb
Show file tree
Hide file tree
Showing 53 changed files with 2,597 additions and 2,783 deletions.
5 changes: 0 additions & 5 deletions .dockerignore

This file was deleted.

81 changes: 81 additions & 0 deletions .github/workflows/hydrun.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
name: hydrun CI

on:
push:
pull_request:
schedule:
- cron: "0 0 * * 0"

jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- id: clients
src: .
os: golang:bullseye
flags: ""
cmd: ./Hydrunfile clients
dst: out/*
- id: servers
src: .
os: ghcr.io/pojntfx/bagccgop-base-sid
flags: -e '--privileged'
cmd: ./Hydrunfile servers
dst: out/*

steps:
- name: Maximize build space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Set up hydrun
run: |
curl -L -o /tmp/hydrun "https://github.com/pojntfx/hydrun/releases/latest/download/hydrun.linux-$(uname -m)"
sudo install /tmp/hydrun /usr/local/bin
- name: Build with hydrun
working-directory: ${{ matrix.target.src }}
run: hydrun -o ${{ matrix.target.os }} ${{ matrix.target.flags }} "${{ matrix.target.cmd }}"
- name: Fix permissions for output
run: sudo chown -R $USER .
- name: Upload output
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.target.id }}
path: ${{ matrix.target.dst }}
publish-linux:
runs-on: ubuntu-latest
needs: build-linux

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download output
uses: actions/download-artifact@v2
with:
path: /tmp/out
- name: Publish pre-release to GitHub releases
if: ${{ github.ref == 'refs/heads/main' }}
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: unstable
prerelease: true
files: |
/tmp/out/*/*
- name: Publish release to GitHub releases
if: startsWith(github.ref, 'refs/tags/v')
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
/tmp/out/*/*
7 changes: 2 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
**/.bin
**/.idea
**/charts/*/charts
**/dhcp/
**/statik*
out
pkg/workers/dhcp
Loading

0 comments on commit 16fa4eb

Please sign in to comment.