From 0910c7650b2d65567650417cace99d04356fb64b Mon Sep 17 00:00:00 2001 From: Dan Walkes Date: Sun, 25 Aug 2024 15:23:26 -0600 Subject: [PATCH] update to Ubuntu 22.04 test container --- .github/workflows/github-actions.yml | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 9d582aa..780aa9c 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -1,5 +1,5 @@ name: assignment-test -on: +on: push: tags-ignore: - '*' @@ -7,7 +7,7 @@ on: - '*' jobs: unit-test: - container: cuaesd/aesd-autotest:unit-test + container: cuaesd/aesd-autotest:24-unit-test runs-on: self-hosted steps: - uses: actions/checkout@v2 @@ -16,7 +16,7 @@ jobs: - name: Run unit test run: ./unit-test.sh full-test: - container: cuaesd/aesd-autotest:assignment2 + container: cuaesd/aesd-autotest:24-assignment2 runs-on: self-hosted steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 7bbfc39..e4217ff 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The basis of the automated test implementation for this repository comes from [h The assignment-autotest directory contains scripts useful for automated testing Use ``` -git submodule init update --recursive +git submodule update --init --recursive ``` to synchronize after cloning and before starting each assignment, as discussed in the assignment instructions.