Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLipu Fei <lipu.fei815@gmail.com>2019-12-17 13:57:36 +0300
committerLipu Fei <lipu.fei815@gmail.com>2019-12-17 13:57:36 +0300
commitd12edaff10212d61e8f9aab749738da3b75a1db4 (patch)
tree8daedd08c712ac487ff280a2ad94429706070a8c /.github
parentdc7ec41b12732b5ff8c0d02e4df7ca37e84a9069 (diff)
WIP: Fix fetching Uranium
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cicd.yml21
1 files changed, 3 insertions, 18 deletions
diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml
index 50e38ac319..dbc247c94c 100644
--- a/.github/workflows/cicd.yml
+++ b/.github/workflows/cicd.yml
@@ -1,30 +1,15 @@
---
-name: CI/CD for push
-on: [push]
+name: CI/CD
+on: [push, pull_request]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
container: ultimaker/cura-build-environment
steps:
- - name: Checkout code
+ - name: Checkout master
uses: actions/checkout@v1
- name: Build and test
env:
GIT_REF_NAME: github.ref
run: docker/build.sh
-
-name: CI/CD for pull_request
-on: [pull_request]
-jobs:
- build:
- name: Build and test
- runs-on: ubuntu-latest
- container: ultimaker/cura-build-environment
- steps:
- - name: Checkout code
- uses: actions/checkout@v1
- - name: Build and test
- env:
- GIT_REF_NAME: github.base_ref
- run: docker/build.sh