OpenFPGA/.github/workflows/ci_test.yml

33 lines
962 B
YAML
Raw Normal View History

2021-07-01 04:44:48 -05:00
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
2021-07-01 04:47:59 -05:00
runs-on: self-hosted
2021-07-01 04:44:48 -05:00
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2021-07-01 06:05:08 -05:00
- uses: actions/checkout@v1
2021-07-01 06:01:38 -05:00
with:
submodules: true
2021-07-01 05:44:59 -05:00
- name: Updating submodules
run: |
git submodule init
git submodule update --init --recursive
2021-07-01 04:44:48 -05:00
# Runs a set of commands using the runners shell
2021-07-01 04:47:59 -05:00
- name: Executing Script
run:
./ci_test.sh