Skip to content

Commit 19174fc

Browse files
[Swap]: Fix BSC swap (#3549)
* [THORSwap]: Fix memo for ->BSC swap * [THORSwap]: Fix Linux CI
1 parent c5ead67 commit 19174fc

File tree

13 files changed

+93
-23
lines changed

13 files changed

+93
-23
lines changed

.github/workflows/android-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Android CI
22

33
on:
44
push:
5-
branches: [ dev, master ]
5+
branches: [ dev, master, master-3 ]
66
pull_request:
7-
branches: [ dev, master ]
7+
branches: [ dev, master, master-3 ]
88

99
concurrency:
1010
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/codegen-v2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: Codegen-v2 Tests
22

33
on:
44
push:
5-
branches: [ dev, master ]
5+
branches: [ dev, master, master-3 ]
66
paths:
77
- 'codegen-v2/**'
88
pull_request:
9-
branches: [ dev, master ]
9+
branches: [ dev, master, master-3 ]
1010
paths:
1111
- 'codegen-v2/**'
1212

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Docker CI
22

33
on:
44
push:
5-
branches: [ dev, master ]
5+
branches: [ dev, master, master-3 ]
66
pull_request:
7-
branches: [ dev, master ]
7+
branches: [ dev, master, master-3 ]
88
paths:
99
- Dockerfile
1010
- tools/install-dependencies

.github/workflows/ios-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: iOS CI
22

33
on:
44
push:
5-
branches: [ dev, master ]
5+
branches: [ dev, master, master-3 ]
66
pull_request:
7-
branches: [ dev, master ]
7+
branches: [ dev, master, master-3 ]
88

99
concurrency:
1010
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/kotlin-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Kotlin CI
22

33
on:
44
push:
5-
branches: [ dev, master ]
5+
branches: [ dev, master, master-3 ]
66
pull_request:
7-
branches: [ dev, master ]
7+
branches: [ dev, master, master-3 ]
88

99
concurrency:
1010
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/kotlin-sample-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Kotlin Multiplatform CI
22

33
on:
44
push:
5-
branches: [ dev, master ]
5+
branches: [ dev, master, master-3 ]
66
pull_request:
7-
branches: [ dev, master ]
7+
branches: [ dev, master, master-3 ]
88

99
concurrency:
1010
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/linux-ci-rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Linux CI Rust
22

33
on:
44
push:
5-
branches: [ dev, master ]
5+
branches: [ dev, master, master-3 ]
66
pull_request:
7-
branches: [ dev, master ]
7+
branches: [ dev, master, master-3 ]
88

99
env:
1010
SCCACHE_GHA_ENABLED: "true"

.github/workflows/linux-ci-sonarcloud.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Linux CI SonarCloud
22

33
on:
44
push:
5-
branches: [ dev, master ]
5+
branches: [ dev, master, master-3 ]
66
pull_request:
7-
branches: [ dev, master ]
7+
branches: [ dev, master, master-3 ]
88

99
concurrency:
1010
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/linux-ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Linux CI
22

33
on:
44
push:
5-
branches: [ dev, master ]
5+
branches: [ dev, master, master-3 ]
66
pull_request:
7-
branches: [ dev, master ]
7+
branches: [ dev, master, master-3 ]
88

99
concurrency:
1010
group: ${{ github.workflow }}-${{ github.ref }}
@@ -15,6 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616
if: github.event.pull_request.draft == false
1717
steps:
18+
- name: Remove GCC 13 from runner image
19+
shell: bash
20+
run: |
21+
sudo rm -f /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-jammy.list
22+
sudo apt-get update
23+
sudo apt-get install -y --allow-downgrades libc6=2.35-0ubuntu3.4 libc6-dev=2.35-0ubuntu3.4 libstdc++6=12.3.0-1ubuntu1~22.04 libgcc-s1=12.3.0-1ubuntu1~22.04
1824
- uses: actions/checkout@v3
1925
- name: Install system dependencies
2026
run: |

.github/workflows/linux-sampleapp-ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Linux SampleApps CI
22

33
on:
44
push:
5-
branches: [ dev, master ]
5+
branches: [ dev, master, master-3 ]
66
pull_request:
7-
branches: [ dev, master ]
7+
branches: [ dev, master, master-3 ]
88

99
concurrency:
1010
group: ${{ github.workflow }}-${{ github.ref }}
@@ -15,6 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616
if: github.event.pull_request.draft == false
1717
steps:
18+
- name: Remove GCC 13 from runner image
19+
shell: bash
20+
run: |
21+
sudo rm -f /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-jammy.list
22+
sudo apt-get update
23+
sudo apt-get install -y --allow-downgrades libc6=2.35-0ubuntu3.4 libc6-dev=2.35-0ubuntu3.4 libstdc++6=12.3.0-1ubuntu1~22.04 libgcc-s1=12.3.0-1ubuntu1~22.04
1824
- uses: actions/checkout@v3
1925
- name: Install system dependencies
2026
run: |

0 commit comments

Comments
 (0)