Add GHA workflow to build and test RPMs #9
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
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' |