Skip to content

Commit

Permalink
Merge pull request #26 from jwillemsen/jwi-githuaction
Browse files Browse the repository at this point in the history
Use environment variables for checkout paths
  • Loading branch information
jwillemsen authored Aug 26, 2020
2 parents d220d75 + 57903b9 commit c06fcc3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@ jobs:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} ${{ matrix.CXX }} ruby-${{ matrix.ruby }}
env:
DOC_ROOT: ${{ github.workspace }}/ACE_TAO
ACE_ROOT: ${{ github.workspace }}/ACE_TAO/ACE
TAO_ROOT: ${{ github.workspace }}/ACE_TAO/TAO
MPC_ROOT: ${{ github.workspace }}/ACE_TAO/MPC
RIDL_ROOT: ${{ github.workspace }}/ridl
CC: ${{ matrix.CC }}
CXX: ${{ matrix.CXX }}
steps:
Expand All @@ -59,19 +61,19 @@ jobs:
uses: actions/checkout@v2
with:
repository: DOCGroup/ACE_TAO
path: ACE_TAO
path: ${{ env.DOC_ROOT }}
ref: Latest_Micro
- name: checkout MPC
uses: actions/checkout@v2
with:
repository: DOCGroup/MPC
path: ACE_TAO/MPC
path: ${{ env.MPC_ROOT }}
ref: Latest_ACETAO_Micro
- name: checkout ridl
uses: actions/checkout@v2
with:
repository: RemedyIT/ridl
path: ridl
path: ${{ env.RIDL_ROOT }}
- name: Add Repo
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
Expand Down

0 comments on commit c06fcc3

Please sign in to comment.