Skip to content

Commit ac38198

Browse files
authored
Update ubuntu.yml
1 parent 92cb0a5 commit ac38198

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/ubuntu.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,14 @@ jobs:
1818
sudo apt-get update &&
1919
sudo apt-get install -y fpc
2020
- name: build
21-
run:
22-
mkdir build
23-
make
21+
run: make
2422
- name: list build binaries
25-
run: ls -l build/
23+
run: ls -l bin/
2624
- uses: actions/upload-artifact@v4
2725
with:
2826
name: mp-bin-ubuntu
2927
path: |
30-
build/
28+
bin/
3129
3230
build-mads:
3331
runs-on: ubuntu-latest
@@ -54,17 +52,17 @@ jobs:
5452
- uses: actions/download-artifact@v4
5553
with:
5654
name: mp-bin-ubuntu
57-
path: build
55+
path: bin
5856
- uses: actions/download-artifact@v4
5957
with:
6058
name: mads-bin-ubuntu
6159
path: mads
6260
- name: install mads
6361
run: sudo cp -v mads/mads /usr/local/bin/mads
6462
- name: set permissions
65-
run: sudo chmod a+x build/mp /usr/local/bin/mads
63+
run: sudo chmod a+x bin/mp /usr/local/bin/mads
6664
- name: list binaries from the artifacts
67-
run: ls -l build/ mads/ /usr/local/bin/mads
65+
run: ls -l bin/ mads/ /usr/local/bin/mads
6866
- name: setup test environment
6967
run: make test-setup
7068
- name: run tests

0 commit comments

Comments
 (0)