From 145a18aa7ee84cb5c1eed71d19024a5f1c68b673 Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Thu, 28 Aug 2025 14:22:38 +0200 Subject: [PATCH] Switch to Gitea pipeline --- .build.yml | 14 -------------- .github/workflows/build.yml | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 14 deletions(-) delete mode 100644 .build.yml create mode 100644 .github/workflows/build.yml diff --git a/.build.yml b/.build.yml deleted file mode 100644 index 02eef2b..0000000 --- a/.build.yml +++ /dev/null @@ -1,14 +0,0 @@ -kind: pipeline -type: exec -name: AerScript Build - -steps: -- name: compile - commands: - - make release -- name: install - commands: - - make install -- name: test - commands: - - make tests diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e479273 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Build +run-name: ${{ github.actor }} runs Gitea Actions +on: [push] + +jobs: + AerScript: + strategy: + runs-on: oscw + container: + image: codingworkshop/oscw-runner:latest + steps: + - name: Clone repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Build AerScript + run: | + make release + make install + make tests