Switch to Gitea pipeline
This commit is contained in:
parent
5e6ed0f668
commit
145a18aa7e
14
.build.yml
14
.build.yml
@ -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
|
20
.github/workflows/build.yml
vendored
Normal file
20
.github/workflows/build.yml
vendored
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user