From 3c3f3de32faf1a3f1d84942acdd50cf63e5bd6aa Mon Sep 17 00:00:00 2001 From: Fred Klassen Date: Sun, 11 Jun 2023 10:19:01 -0700 Subject: [PATCH] Feature #773 Update github-actions-ci.yml --- .github/workflows/github-actions-ci.yml | 32 +++++++++++++++++-------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/.github/workflows/github-actions-ci.yml b/.github/workflows/github-actions-ci.yml index f3b1587b..0274ea41 100644 --- a/.github/workflows/github-actions-ci.yml +++ b/.github/workflows/github-actions-ci.yml @@ -1,18 +1,30 @@ name: GitHub Actions Tests -run-name: ${{ github.actor }} is running tests using GitHub Actions 🚀 +run-name: ${{ github.actor }} is running tests using GitHub Actions on: [push] jobs: - Explore-GitHub-Actions: + tests: runs-on: ubuntu-latest steps: - - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - run: echo "The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repository code uses: actions/checkout@v3 - - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - run: echo "The ${{ github.repository }} repository has been cloned to the runner." + - name: List interfaces + run: ip a + - name: Create configure script + run: ./autogen.sh + - name: configure + run: ./configure --with-testnic=enp0s5 + - name: make + run: make + - name: make dist + run: make dist + - name: make dist-xz + run: make dist-xz - name: List files in the repository - run: | - ls ${{ github.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." + run: ls ${{ github.workspace }} + - name: tests + run: sudo make test + - run: echo "🍏 This test's status is ${{ job.status }}."