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 53e04d8 commit 7466444Copy full SHA for 7466444
.github/workflows/build_and_test.yml
@@ -13,7 +13,11 @@ jobs:
13
- uses: actions/checkout@v4
14
15
- name: Setup deps
16
- run: sudo apt upgrade && sudo apt install build-essential cmake xmake && xmake update
+ run: |
17
+ sudo apt-get update
18
+ sudo apt-get install build-essential cmake xmake
19
+ xmake update
20
+ source ~/.bashrc
21
22
- name: CMake config
23
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DEMDEVIF_TEST_FRAMEWORK_ENABLE_TEST=ON -DEMDEVIF_TEST_FRAMEWORK_TEST_NAME="integration_test" --debug-output
0 commit comments