Skip to content

Commit

Permalink
Workflow: Try failing if any step fails
Browse files Browse the repository at this point in the history
  • Loading branch information
inexorabletash committed Jul 23, 2021
1 parent 3a1c739 commit c49d60c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,25 @@ jobs:
- uses: actions/checkout@v2

- name: build and install cc65 components
run: |
git clone https://github.com/cc65/cc65 /tmp/cc65
sudo make -C /tmp/cc65 ca65 ld65 avail
run: >
git clone https://github.com/cc65/cc65 /tmp/cc65 &&
sudo make -C /tmp/cc65 ca65 ld65 avail &&
ca65 --version
- name: build and install cadius
run: |
git clone https://github.com/mach-kernel/cadius /tmp/cadius
make -C /tmp/cadius
run: >
git clone https://github.com/mach-kernel/cadius /tmp/cadius &&
make -C /tmp/cadius &&
sudo make -C /tmp/cadius install
- name: build a2d
env:
TERM: xterm-256color
run: |
bin/setlang en && make && make package
bin/setlang fr && make && make package
bin/setlang it && make && make package
bin/setlang es && make && make package
run: >
bin/setlang en && make && make package &&
bin/setlang fr && make && make package &&
bin/setlang it && make && make package &&
bin/setlang es && make && make package &&
bin/setlang de && make && make package
- name: deploy new version
Expand Down

0 comments on commit c49d60c

Please sign in to comment.