forked from ohpc-openeuler/ohpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build the recipe.sh on Github-hosted runner
The test SMS host is now used for Jenkins Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
- Loading branch information
Showing
1 changed file
with
9 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,12 +18,18 @@ env: | |
|
||
jobs: | ||
openEuler: | ||
runs-on: 'self-hosted' | ||
runs-on: 'ubuntu-22.04' | ||
name: Run recipe on openEuler | ||
# container: | ||
# image: docker.io/openeuler/openeuler:22.03-lts | ||
container: | ||
image: docker.io/openeuler/openeuler:22.03-lts | ||
steps: | ||
- name: Switch repo | ||
run: sed -i "[email protected]@repo.huaweicloud.com/openeuler@g" /etc/yum.repos.d/openEuler.repo | ||
- name: Install git | ||
run: dnf -y install git | ||
- uses: actions/checkout@v3 | ||
- name: Setup | ||
run: tests/ci/prepare-ci-environment.sh | ||
- name: Run recipe | ||
run: | | ||
set -x | ||
|