aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMarvin Borner2020-01-03 22:14:55 +0100
committerMarvin Borner2020-01-03 22:14:55 +0100
commitfe74f33641696bc31022737ddf1d618dec20c87f (patch)
tree01f45cfa7d4a717a8429c9bb36f37e50029dfaea /.github/workflows
parenta67919783e4c69644b24a0ced0d5373bb8adf794 (diff)
I don't like CMake
I switched to basic shell scripts now
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6c129cf..30ff2cb 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -13,9 +13,9 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Install
- run: sudo apt-get update && sudo apt-get install -y build-essential cmake bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libcloog-isl-dev libisl-0.18-dev curl nasm genisoimage qemu qemu-kvm mtools
+ run: sudo apt-get update && sudo apt-get install -y build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libcloog-isl-dev libisl-0.18-dev curl nasm genisoimage qemu qemu-kvm mtools
- name: Build
- run: sh cross.sh && mkdir build && cd build && cmake .. && make && cd ..
+ run: sh run build
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')