diff --git a/ci/ci-script.bash b/ci/ci-script.bash index 0c0d2a9b6..fce1c1c8b 100755 --- a/ci/ci-script.bash +++ b/ci/ci-script.bash @@ -69,7 +69,7 @@ elif [ "$CI_BUILD_STAGE_NAME" = "test" ]; then stat bin/verilator_bin_dbg # For some reason, the dbg exe is corrupted by this point ('file' reports # it as data rather than a Mach-O). Unclear if this is an OS X issue or - # one for Travis. Remove the file and re-link... + # CI's. Remove the file and re-link... rm bin/verilator_bin_dbg "$MAKE" -j "$NPROC" -k elif [ "$CI_OS_NAME" = "freebsd" ]; then diff --git a/docs/CONTRIBUTING.adoc b/docs/CONTRIBUTING.adoc index e205d80b0..eda1108e6 100644 --- a/docs/CONTRIBUTING.adoc +++ b/docs/CONTRIBUTING.adoc @@ -27,8 +27,8 @@ contributions flow more efficiently. * You may attach a patch to the issue, or (preferred) may request a GitHub pull request. -** Verilator uses Travis CI to provide continuous integration. You may - want to setup Travis CI on your GitHub branch to ensure your changes +** Verilator uses GitHub Actions to provide continuous integration. You may + want to enable Actions on your GitHub branch to ensure your changes keep the tests passing. See link:internals.adoc[docs/internals]. * Your source-code contributions must be certified as open source, under diff --git a/docs/internals.adoc b/docs/internals.adoc index aab4d8099..4b7c64d32 100644 --- a/docs/internals.adoc +++ b/docs/internals.adoc @@ -728,20 +728,17 @@ test, run the following command. === Continuous Integration -Verilator has a https://travis-ci.com/verilator/verilator[Travis CI environment] -which automatically tests the master branch for test failures on new commits. It -also runs a daily cron job to validate all of the tests against different OS and -compiler versions. +Verilator uses GitHub Actions which automatically tests the master branch +for test failures on new commits. It also runs a daily cron job to validate +all of the tests against different OS and compiler versions. -Developers can connect Travis CI to their GitHub account so that the CI -environment can check their branches too by doing the following: +Developers can enable Actions on their GitHub repository so that the CI +environment can check their branches too by enabling the build workflow: -* Go to https://github.com/marketplace/travis-ci and follow the prompts - -* Only the Open Source (FREE) version of Travis CI is required - -* Under a Travis CI project click More options > Settings in order to set up a -cron job on a particular branch +* On GitHub, navigate to the main page of the repository. +* Under your repository name, click Actions. +* In the left sidebar, click the workflow you want to enable ("build"). +* Click Enable workflow. === Fuzzing