diff --git a/.gitea/workflows/test1.yaml b/.gitea/workflows/test1.yaml index 750db2d..47eeb31 100644 --- a/.gitea/workflows/test1.yaml +++ b/.gitea/workflows/test1.yaml @@ -28,7 +28,7 @@ jobs: steps: - name: Install tools run: | - yes \| pacman -Sy git gcc + pacman -Sy --noconfirm git gcc - name: Clone repository run: | git init @@ -46,36 +46,46 @@ jobs: runs-on: void steps: - name: Install tools + shell: sh run: | - xbps-install -S git gcc + xbps-install -Sy git gcc - name: Clone repository + shell: sh run: | git init git remote add gitea http://10.1.1.1:3000/hasslesstech/test3 git fetch git checkout master - name: Build funtions + shell: sh run: gcc -c f.c - name: Build core + shell: sh run: gcc -c core.c - name: Link program + shell: sh run: gcc f.o core.o -o core build-alpine: runs-on: alpine steps: - name: Install tools + shell: sh run: | pkg add git gcc - name: Clone repository + shell: sh run: | git init git remote add gitea http://10.1.1.1:3000/hasslesstech/test3 git fetch git checkout master - name: Build funtions + shell: sh run: gcc -c f.c - name: Build core + shell: sh run: gcc -c core.c - name: Link program + shell: sh run: gcc f.o core.o -o core