Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:
contents: read

jobs:
build:
workflow-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
- name: Install Open-COBOL-ESQL
working-directory: Open-COBOL-ESQL
run: |
chmod +x ./autogen.sh && ./autogen.sh
./autogen.sh
./configure
make install

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ aclocal.m4
configure
config.h*
Makefile.in
*/Makefile.in
configure~

config.log
config.status
Expand Down
6 changes: 3 additions & 3 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ image: gitpod/workspace-c

tasks:

- name: setup coding environment on Ubuntu 20.04
- name: setup coding environment on Ubuntu 22.04
before: |
# note: sadly we need this to be done every time as only /workspace is kept, but linked
# against those dependencies; and also we do want to recompile after adjustments
Expand All @@ -17,7 +17,7 @@ tasks:
gp sync-done system-prepare
exit

- name: setup test environment on Ubuntu 20.04
- name: setup test environment on Ubuntu 22.04
before: |
gp sync-await system-prepare
sudo apt install -y build-essential \
Expand All @@ -42,7 +42,7 @@ tasks:
gp sync-await system-prepare
../autogen.sh
../configure --enable-debug
make --jobs=$(nproc)
bear -- make --jobs=$(nproc)
command: |
cd $GITPOD_REPO_ROOTS/build
gp sync-done build-finish
Expand Down
Loading