mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
WIP: Fix fetching Uranium
This commit is contained in:
parent
88196fa62b
commit
208ab6421f
2 changed files with 22 additions and 4 deletions
23
.github/workflows/cicd.yml
vendored
23
.github/workflows/cicd.yml
vendored
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
name: CI/CD
|
||||
on: [push, pull_request]
|
||||
name: CI/CD for push
|
||||
on: push
|
||||
jobs:
|
||||
build:
|
||||
name: Build and test
|
||||
|
@ -8,6 +8,23 @@ jobs:
|
|||
container: ultimaker/cura-build-environment
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v1.2.0
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue