We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 851712b commit 28a6919Copy full SHA for 28a6919
.github/workflows/build-be.yml
@@ -48,15 +48,19 @@ jobs:
48
49
build-linux:
50
runs-on: ubuntu-latest
51
+ container:
52
+ image: ubuntu:20.04
53
+ env:
54
+ XMAKE_ROOT: y
55
56
steps:
57
- name: Checkout
58
uses: actions/checkout@v4
59
- name: Configure paths
60
run: |
- mkdir -p artifacts/{verbose,release,debug}/{x86,x64}
61
+ bash -c "mkdir -p artifacts/{verbose,release,debug}/{x86,x64}"
62
- name: Install dependencies
- run: sudo apt-get update && sudo apt-get install -y git build-essential libreadline-dev ccache gcc-multilib g++-multilib
63
+ run: apt-get update && apt-get install -y git build-essential libreadline-dev ccache gcc-multilib g++-multilib clang curl
64
- name: Build Release
65
66
./build.sh
0 commit comments