Skip to content

Commit

Permalink
adding an if statement for sense-aws cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
abessiari committed Mar 14, 2024
1 parent 98804e9 commit 6ad71ff
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ubuntu_22_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,19 @@ jobs:
echo ${{ env.FABRIC_SLIVER_PUBKEY }} | base64 --decode > ${{ github.workspace }}/creds/sliver.pub
echo ${{ env.SENSE_SLIVER_KEY }} | base64 --decode > ${{ github.workspace }}/creds/sense
- name: Test Fabric FacilityPort
if: ${{ env.RUN_FABRIC_AWS_SEND == 'false' || env.RUN_FABRIC_AWS_SEND == false }}
run: |
session=cicd-fabric-facility-port
echo "vlan: 3102" > $session-varfile.yml
${{ github.workspace }}/cicd/run-fabfed.sh cicd/test_configs/fabric_facility_port $session $session-varfile.yml
- name: Test L2VPN with nodes.
if: ${{ env.RUN_FABRIC_AWS_SEND == 'false' || env.RUN_FABRIC_AWS_SEND == false }}
run: |
${{ github.workspace }}/cicd/run-fabfed.sh cicd/test_configs/fabric_l2_vpn cicd-fabric-l2-vpn
- name: Test SENSE/AWS.
if: ${{ env.RUN_FABRIC_AWS_SEND == 'true' || env.RUN_FABRIC_AWS_SEND == true }}
run: |
${{ github.workspace }}/cicd/run-fabfed.sh cicd/test_configs/fabric_sense_aws cicd-sense-aws

0 comments on commit 6ad71ff

Please sign in to comment.