Skip to content

Commit 63c5c0a

Browse files
committed
Try to figure out this directory stuff
1 parent 74aab45 commit 63c5c0a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/linux.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535

3636
- name: Install Ubuntu dependencies
3737
run: |
38+
pwd
3839
sudo apt-get update
3940
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
4041
sudo apt-get install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
@@ -48,16 +49,19 @@ jobs:
4849
4950
- name: Install Catch2
5051
run: |
51-
cd Catch2
52+
pwd
5253
cmake -Bbuild -H. -DBUILD_TESTING=OFF
5354
sudo cmake --build build/ --target install
55+
working-directory: ./Catch2
5456

5557
- name: Configure and build
5658
run: |
59+
pwd
5760
cmake .
5861
make
5962
6063
- name: run tests
6164
run: |
65+
pwd
6266
export XSREF_TABLES_PATH="xsref/tables"
6367
ctest --output-on-failure

0 commit comments

Comments
 (0)