-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'addCompileCheck' of github.com:YousefEZ/CongestionFRR i…
…nto addCompileCheck 🔀 merge with origin main
- Loading branch information
Showing
1 changed file
with
33 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |