Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
Skip-PR-comments: true

Required-githooks: true

Signed-off-by: Brian J. Murrell <[email protected]>
  • Loading branch information
brianjmurrell committed Sep 9, 2024
1 parent 356f4fb commit f72a74e
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 48 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'
10 changes: 6 additions & 4 deletions .github/workflows/rpm-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ env:
LEAP15_VERSION: 15.5
# Which distros to build for
DISTROS: el8 el9 leap15
TEST_TAG: pr
# DO NOT LAND -- just to speed up testing
# TEST_TAG: pr
TEST_TAG: always_passes,vm
PACKAGING_DIR: .
NAME: argobots

Expand Down Expand Up @@ -41,7 +43,7 @@ permissions: {}

jobs:
Variables:
# What a dumb job this is.
# What a dumb jobs this is
# Needed because of https://github.com/orgs/community/discussions/26671
# Ideally want to be able to use:
# with:
Expand All @@ -68,7 +70,7 @@ jobs:
if: inputs.rpm-test-version == ''
permissions:
statuses: write
uses: daos-stack/actions-lib/.github/workflows/rpm-build.yml@v1
uses: daos-stack/actions-lib/.github/workflows/rpm-build.yml@bmurrell/initial
secrets: inherit
with:
NAME: ${{ needs.Variables.outputs.NAME }}
Expand All @@ -82,7 +84,7 @@ jobs:
# TODO: investigate how cancelling this can cancel the downstream job
name: Test RPMs with DAOS
needs: [Variables, Call-RPM-Build]
uses: daos-stack/actions-lib/.github/workflows/rpm-test.yml@v1
uses: daos-stack/actions-lib/.github/workflows/rpm-test.yml@bmurrell/initial
secrets: inherit
with:
NAME: ${{ needs.Variables.outputs.NAME }}
Expand Down
44 changes: 0 additions & 44 deletions Jenkinsfile

This file was deleted.

0 comments on commit f72a74e

Please sign in to comment.