Skip to content

Commit

Permalink
refine fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
varshith257 committed Sep 22, 2024
1 parent 1eab67e commit 2162679
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/ci2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,11 @@ jobs:
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose
sudo service docker start
- name: Verify Docker Installation
run: docker --version

# Step 8: Install Poetry and Dependencies
- name: Install Poetry and Dependencies
run: |
Expand All @@ -91,17 +95,18 @@ jobs:
run: |
cd http-conformance
sh fix_dpkt.sh
- name: Set Environment Variables for Testbed
run: |
echo "openresty_http_port=8080" >> $GITHUB_ENV
echo "openresty_https_port=8443" >> $GITHUB_ENV
echo "apache_http_port=8081" >> $GITHUB_ENV
echo "apache_https_port=8444" >> $GITHUB_ENV
echo "nginx_http_port=8082" >> $GITHUB_ENV
echo "nginx_https_port=8445" >> $GITHUB_ENV
echo "jetty_http_port=8083" >> $GITHUB_ENV
echo "jetty_https_port=8446" >> $GITHUB_ENV
echo "tomcat_http_port=8084" >> $GITHUB_ENV
echo "tomcat_https_port=8447" >> $GITHUB_ENV
echo "openlitespeed_http_port=8085" >> $GITHUB_ENV
echo "openlitespeed_https_port=8448" >> $GITHUB_ENV
echo "caddy_http_port=8086" >> $GITHUB_ENV
echo "caddy_https_port=8449" >> $GITHUB_ENV
echo "node_http_port=8090" >> $GITHUB_ENV
echo "traefik_http_port=8091" >> $GITHUB_ENV
echo "traefik_https_port=8450" >> $GITHUB_ENV
# Step 10: Start Testbed Servers (Docker Compose)
- name: Start Testbed (Docker Compose)
Expand Down

0 comments on commit 2162679

Please sign in to comment.