Skip to content

Update ccpp_win_rc.yml #32

Update ccpp_win_rc.yml

Update ccpp_win_rc.yml #32

name: C/C++ Release candidate ubuntu
on:
push:
branches:
- rc
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
ref: 'rc'
- name: update submodule profiles
working-directory: ./resources/profiles
run: git submodule update --init
- name: change date in version
run: sed -i "s/+UNKNOWN//" version.inc
- name: update clock
run: sudo hwclock -s
- name: update apt
run: sudo apt update
- name: install gtk2 glew
run: sudo apt install libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev
- name: build deps & slicer
run: ./BuildLinux.sh -dgs
- name: make .pot
working-directory: ./build
run: make gettext_make_pot
- name: build tar & appimage
working-directory: ./build
run: src/BuildLinuxImage.sh -i
- name: Upload artifact
uses: actions/[email protected]
with:
name: rc_linux_gtk2.tar
path: build/SuperPleccer.tar
- name: Upload appimage
uses: actions/[email protected]
with:
name: rc-${{ github.event.repository.name }}-gtk2.AppImage
path: build/SuperPleccer_ubu64.AppImage
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload release assets
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_name: SuperPleccer-${{ matrix.config.os }}
asset_path: build/SuperPleccer_ubu64.AppImage
asset_content_type: application/octet-stream