From 79a313a03e0dac46e0f4b4c972d2246db656feba Mon Sep 17 00:00:00 2001 From: Zvonimir Rudinski Date: Sun, 2 Jun 2024 07:01:12 +0200 Subject: [PATCH] start debugging workflow file --- .github/workflows/build.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bcf21cd..03d6c7b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,25 +9,5 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Setup GCC - uses: egor-tensin/setup-gcc@v1 - with: - version: latest - platform: x86 - - name: Setup ncurses - uses: awalsh128/cache-apt-pkgs-action@latest - with: - packages: libncurses5-dev - version: 1.0 - - name: Build - run: | - mkdir build - make - cp todd build/todd - - name: Upload build - uses: actions/upload-artifact@v2 - with: - name: todd-linux-x86 - path: build