Skip to content

Commit

Permalink
fffxx
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrii Verbytskyi committed Dec 30, 2023
1 parent fb0dbec commit 7bed060
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:

jobs:
compilejobTW:
if: contains(github.event.head_commit.message, 'CI') == 'true' || ${{ github.event_name == 'schedule' }}
name: HEPrpms_on_TW
runs-on: ubuntu-latest
container:
Expand All @@ -17,6 +16,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install
if: contains(github.event.head_commit.message, 'CI') == 'true' || ${{ github.event_name == 'schedule' }}
run: |
zypper --non-interactive install rpm-build which rpmdevtools git wget
zypper --non-interactive addrepo https://download.opensuse.org/repositories/science/openSUSE_Tumbleweed/science.repo
Expand All @@ -35,7 +35,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
- name: Install
if: contains(github.event.head_commit.message, 'CI') || ${{ github.event_name == 'schedule' }}
run: |
dnf -y install 'dnf-command(copr)' rpm-build which rpmdevtools git
yum -y install epel-release
Expand Down

0 comments on commit 7bed060

Please sign in to comment.