Skip to content

Commit

Permalink
DO NOT LAND
Browse files Browse the repository at this point in the history
An action to test what happens in docker

Skip-PR-comments: true
Run-GHA: true

Required-githooks: true

Signed-off-by: Brian J. Murrell <[email protected]>
  • Loading branch information
brianjmurrell committed Jul 16, 2024
1 parent d51d781 commit 54b6641
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/actions_docker_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Actions Docker Test

on:
pull_request:
branches:
- master

jobs:
Docker-Test:
runs-on: ubuntu-latest
steps:
- name: UID outside of Docker
run: |
echo "Outside of Docker I am $(id)"
pwd
touch testfile
ls -l
cat /etc/os-release
apt-get -y update
apt-get -y install bind9-dnsutils iproute2 net-tools
cat /etc/resolv.conf
nslookup artifactory.dc.hpdd.intel.com
which docker
dpkg -S $(which docker)
ip route ls
ip addr ls
ifconfig -a
- name: UID inside of Docker
run: |
docker run -v "$PWD":"$PWD" -w "$PWD" --rm ubuntu:latest \
bash -c 'echo "Inside of Docker I am $(id)"; pwd; ls -l;
cat /etc/os-release
apt-get -y update
apt-get -y install bind9-dnsutils iproute2 net-tools
ip route ls
ip addr ls
ifconfig -a
cat /etc/resolv.conf
echo "nameserver 169.254.0.1" > /etc/resolv.conf
cat /etc/resolv.conf
nslookup artifactory.dc.hpdd.intel.com'

0 comments on commit 54b6641

Please sign in to comment.