Skip to content

Commit

Permalink
Merge branch 'addCompileCheck' of github.com:YousefEZ/CongestionFRR i…
Browse files Browse the repository at this point in the history
…nto addCompileCheck

🔀 merge with origin main
  • Loading branch information
YousefEZ committed Mar 9, 2024
2 parents ece150a + c719512 commit 3a62454
Showing 1 changed file with 33 additions and 6 deletions.
39 changes: 33 additions & 6 deletions .github/workflows/compile-check.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,39 @@
name: Create and Execute Bash Script
name: Ensure Scripts Compile

on: [push]

jobs:
create-and-execute-script:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run Docker Compose
run: docker-compose run ns3
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and export
uses: docker/build-push-action@v5
with:
context: .
tags: congestionfrr:latest
outputs: type=docker,dest=/tmp/congestionfrr.tar
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: congestionfrr
path: /tmp/congestionfrr.tar

use:
runs-on: ubuntu-latest
needs: build
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: congestionfrr
path: /tmp
- name: Load image
run: |
docker load --input /tmp/congestionfrr.tar
docker image ls -a
- name: Run Docker Compose
run: docker-compose run ns3

0 comments on commit 3a62454

Please sign in to comment.