Skip to content

Commit

Permalink
asdflkasd
Browse files Browse the repository at this point in the history
  • Loading branch information
SoloJacobs committed Oct 12, 2023
1 parent 363abdf commit d158b11
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,15 @@ on:
- .github/workflows/build_all.yml

jobs:
build_robotmk:
uses: SoloJacobs/test_ci/.github/workflows/robotmk.yml@main
build_rcc:
uses: SoloJacobs/test_ci/.github/workflows/rcc.yml@main
# build_robotmk:
# uses: SoloJacobs/test_ci/.github/workflows/robotmk.yml@main
# build_rcc:
# uses: SoloJacobs/test_ci/.github/workflows/rcc.yml@main
build_test:
- name: "Create LICENSE"
uses: SoloJacobs/test_ci/.github/workflows/test.yml@main

- name: 'Download Artifact'
uses: actions/download-artifact@v3
with:
name: my-artifact
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: "TEST"

on:
push:
paths:
- .github/workflows/test.yml
pull_request:
paths:
- .github/workflows/test.yml
workflow_call: {}

jobs:
build_rcc_from_source:
runs-on: ubuntu-latest

steps:
- name: "Checkout repository"
uses: actions/checkout@v4

- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: my-artifact
path: LICENSE

0 comments on commit d158b11

Please sign in to comment.