Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
environment: docker

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Runs a set of commands using the runners shell
- name: Install tools
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create Package
run: |
Expand Down
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,13 @@ format:

.PHONY: clean
clean:
docker-compose down
docker compose down
rm -f $(PACKAGE_NAME)_*.tar.gz
rm -f .version

.PHONY: install
install:
install -d -m 0755 $(PROFILE_DIRECTORY)
ifneq ("$(wildcard .version)","")
install -m 0644 -C .version $(PROFILE_DIRECTORY)/.version
endif
Expand All @@ -48,7 +49,8 @@ ifneq ("$(BASHRC_INSTALL_STATUS)","0")
endif

.PHONY: install-snippets
install-snippets:
install-snippets: install
install -d -m 0755 $(SNIPPETS_DIRECTORY)
for snip in $(SNIPPETS); do \
install -m 0755 -C $$snip $(SNIPPETS_DIRECTORY); \
done
Expand Down
2 changes: 1 addition & 1 deletion tests/automated_tests.exp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ proc abort {} {
exit 1
}

spawn docker-compose run --rm shell
spawn docker compose run --rm shell
sleep 2
expect "#"

Expand Down