CI fix broken dependencies #117
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: builds | |
on: | |
push: {} | |
pull_request: {} | |
jobs: | |
build_windows: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- "-win32" | |
- "-win64" | |
steps: | |
- name: checkout Xiphos | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: fetch history | |
run: | | |
git fetch origin +refs/tags/*:refs/tags/* | |
- name: build windows targets | |
shell: bash | |
id: build | |
run: | | |
set -ex -o pipefail | |
docker build -t xiphos win32 | |
docker run -i --rm -v "$(pwd):/source" xiphos ${{ matrix.version }} | |
- name: upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: windows-installers | |
path: "*.exe" | |
build_linux: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
distro: | |
- archlinux:latest | |
- fedora:latest | |
- debian:latest | |
- ubuntu:latest | |
steps: | |
- name: checkout xiphos | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: fetch tags | |
run: git fetch --tags | |
- name: install python | |
uses: actions/setup-python@v1 | |
- name: install python packages | |
run: | | |
set -ex | |
python -m pip install -U pip | |
pip install -U PyGithub setuptools PyYAML | |
- name: execute build | |
id: build | |
run: | | |
set -ex | |
curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build | |
chmod +x docker-build | |
python docker-build --name ${{ matrix.distro }} --config .ci-build.yml --install | |
python docker-build --name ${{ matrix.distro }} -vvvv --config .ci-build.yml --build scripts | |
env: | |
TEMP: ${{ runner.temp }} | |
- name: upload source tarball | |
uses: actions/upload-artifact@v2 | |
with: | |
name: source | |
path: build/*.tar.gz | |
- name: upload source zipfile | |
uses: actions/upload-artifact@v2 | |
with: | |
name: source | |
path: build/*.tar.gz | |
deploy: | |
needs: | |
- build_windows | |
- build_linux | |
if: contains(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- name: download all the artifacts | |
uses: actions/download-artifact@v2 | |
- name: prepare for release | |
id: release | |
run: | | |
set -ex | |
ls -R | |
cd source | |
gunzip -k *.tar.gz | |
xz *.tar | |
cd .. | |
echo ::set-output name=tag::${GITHUB_REF#refs/tags/} | |
- name: create release | |
uses: ncipollo/[email protected] | |
with: | |
artifacts: source/*,windows-installers/* | |
allowUpdates: true | |
name: Release ${{ steps.release.outputs.tag }} | |
token: ${{ secrets.GITHUB_TOKEN }} |