mirror of
https://github.com/pumpitupdev/pumptools.git
synced 2026-09-22 22:28:03 +03:00
97 lines
3.0 KiB
YAML
97 lines
3.0 KiB
YAML
# Regarding build steps, this is a copy of the Dockerfile and should be kept in-sync
|
|
name: "Build pumptools"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- ci-github
|
|
release:
|
|
types:
|
|
- created
|
|
workflow_dispatch: # allows you to trigger manually
|
|
|
|
# TODO check github actions doc to evaluate if we need this or if this is even a good idea
|
|
# concurrency:
|
|
# group: ${{ github.workflow }}-${{ github.ref }}
|
|
# cancel-in-progress: true
|
|
|
|
jobs:
|
|
Explore-GitHub-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
|
|
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
|
|
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v2
|
|
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
|
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
|
- name: List files in the repository
|
|
run: |
|
|
ls ${{ github.workspace }}
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
|
|
|
build:
|
|
runs-on: "ubuntu-20.04"
|
|
steps:
|
|
- name: "Checkout repository"
|
|
uses: "actions/checkout@v2"
|
|
|
|
- name: "Show workspace"
|
|
run: |
|
|
pwd
|
|
ls -lah
|
|
|
|
- name: "Install docker"
|
|
run: sudo apt-get update && sudo apt-get install docker-ce docker-ce-cli containerd.io
|
|
|
|
- name: "Build"
|
|
run: make build-docker
|
|
|
|
# - name: "Install prerequisites"
|
|
# run: |
|
|
# dpkg --add-architecture i386
|
|
# apt-get update
|
|
# apt-get install -y \
|
|
# g++-multilib
|
|
# gcc-multilib
|
|
# zip \
|
|
# cmake \
|
|
# make \
|
|
# git \
|
|
# libc6-dev-i386 \
|
|
# libusb-1.0-0-dev:i386 \
|
|
# libusb-dev:i386 \
|
|
# libasound2-dev:i386 \
|
|
# libconfig++-dev:i386 \
|
|
# libx11-dev:i386 \
|
|
# libcurl4-gnutls-dev:i386 \
|
|
# libglu1-mesa-dev:i386
|
|
# - name: "Build"
|
|
# run: "make -C $GITHUB_WORKSPACE build"
|
|
# - name: "Package distribution files"
|
|
# run: "make -C $GITHUB_WORKSPACE package"
|
|
# - name: "Upload artifacts"
|
|
# uses: "actions/upload-artifact@v2"
|
|
# with:
|
|
# name: "pumptools"
|
|
# retention-days: 30
|
|
# path: |
|
|
# $GITHUB_WORKSPACE/build/pumptools.zip
|
|
|
|
# publish-release:
|
|
# runs-on: "ubuntu-20.04"
|
|
# steps:
|
|
# - uses: "actions/download-artifact@v2"
|
|
# with:
|
|
# name: "pumptools"
|
|
# - uses: "marvinpinto/action-automatic-releases@v1.2.1"
|
|
# with:
|
|
# repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
# automatic_release_tag: "latest"
|
|
# prerelease: true
|
|
# title: "Development Build"
|
|
# files: |
|
|
# LICENSE.txt
|
|
# *.jar
|