Skip to content

Commit

Permalink
Another test
Browse files Browse the repository at this point in the history
  • Loading branch information
SoloJacobs committed Oct 12, 2023
1 parent e623f62 commit c41df65
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/rcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@ jobs:
ref: v14.15.4
path: rcc

- name: "Setup Rake"
run: |
sudo apt-get install rubygems
sudo gem install rake
- name: "Setup Go"
run: |
wget https://go.dev/dl/go1.21.0.linux-amd64.tar.gz
# rcc expects $HOME/go/bin to be present (hard-coded)
tar -C $HOME -xzf go1.21.0.linux-amd64.tar.gz
echo "PATH=$PATH:$HOME/go/bin" >> $GITHUB_ENV
uses: actions/setup-go@v3
with:
go-version: '1.20.x'

- name: "Setup Rake"
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'

- name: "Build RCC"
run: rake -C rcc build
working-directory: rcc
run: rake build

- name: "Test RCC"
run: rake -C rcc test
working-directory: rcc
run: rake test

- name: "Upload Artifact"
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit c41df65

Please sign in to comment.